Q2
Which command is used to sort the lines of data in a file in reverse order
A.
sort
B.
sh
C.
st
D.
sort -r
AnswerE.
None of the above
Answer: Option D
Solution
Answer: Option D
Solution:
In Unix, the sort command is used to sort the lines of data in a file. By adding the -r option to the sort command, you can sort the lines in reverse order.So, sort -r is the correct command to sort the lines of data in a file in reverse order.