in Others retagged by
1,300 views
2 votes
2 votes

Consider the following operations to be performed in Unix : "The pipe sorts all files in the current directory modified in the month of "June" by order of size and prints them to the terminal screen. The sort option skips ten fields then sorts the lines in numeric order." Which of the following Unix command will perform above set of operations ?

  1. ls - $1$ | grep "June" | sort + $10$n
  2. ls - $1$ | grep "June" | sort + $10$r
  3. ls - $1$ | grep - $v$ "June" | sort + $10$n
  4. ls - $1$ | grep - $n$ "June" | sort + $10$x
in Others retagged by
1.3k views

1 Answer

0 votes
0 votes
Option A is correct

Related questions