what is the command to print last 8 lines of any text file.
Answer Posted / santosh sathe
1) use tail -8 filename
2) This will print last three lines of a file
cat 1.lst
hi
hello
bye
good
morning
sed -n '1,2!p' 1.lst
o/p
bye
good
morning
The last 3 lines are printed.sed command uses !(negation)
operator for skipping the 1st and 2nd line,That means it
will print all the lines except 1st and 2nd.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the difference between cat command and more command?
What is the difference between cat and more command?
Differentiate cat command from more command.
What is the functionality of a top command?
Is grep faster than awk?
What is grep command in unix with examples?
Write a command that will display files in the current directory, in a colored, long format.
What is grep r?
How can we use grep command in unix?
What is the use of cut command in unix?
What is the use of finger command?
What does sed command do in unix?
What command is used to switching between users in unix?
What's a command word?
What happens when we execute a unix command?