in a growing log file how will you see the 1st 99 lines?
Answers were Sorted based on User's Feedback
Answer / sonali
head -99 <file name> - display 1 st 99 lines
tail -99 <file name> - display last 99 lines
| Is This Answer Correct ? | 20 Yes | 2 No |
Answer / anshul basra
$ head -99 <filename> will show first 99lines of that file.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / kiruthiga.s
Syntax:
head -99 file name
if file name is test1.txt
Example:
head -99 test1.txt
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / dibya lochan giri
to see the last 99 lines in a log file you can use the cmd
$ tail -99f <file name>
| Is This Answer Correct ? | 9 Yes | 7 No |
Answer / dibyalochangiri
ans-using cmd $tail -99f <log file name>
| Is This Answer Correct ? | 5 Yes | 11 No |
What is the command to view process running?
What is "type" command in unix?what is the functionality??
What is the significance of the 'tee' command?
How do you list the files in an UNIX directory while also showing hidden files?
how to unzip the contents of the gzip file
Give command that will make the file "run.sh" executable?
What is the use of tee command?
How do I find previous commands in unix?
who to change the duplex setting of network interface in command line
What is {} in find command?
What is the difference between pipe and xargs?
How to get the last ten lines of a file using awk utility?