Google News
logo
Unix - Quiz(MCQ)
Which symbol is used with the tail command to print the file from the selected line?
A)
–
B)
^
C)
%%
D)
+

Correct Answer :   +


Explanation : We can also address lines from the beginning instead of the end. The +count option allows us to do that, where count represents the line number from where the selection should begin. For example,

$ tail +11 emp.lst        // start printing from 11th line onwards​

Advertisement