in a growing log file how will you see the 1st 99 lines?

Answers were Sorted based on User's Feedback



in a growing log file how will you see the 1st 99 lines?..

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

in a growing log file how will you see the 1st 99 lines?..

Answer / anandthks

head -99 <filename> will give 1st 99 lines

Is This Answer Correct ?    12 Yes 3 No

in a growing log file how will you see the 1st 99 lines?..

Answer / anshul basra

$ head -99 <filename> will show first 99lines of that file.

Is This Answer Correct ?    7 Yes 0 No

in a growing log file how will you see the 1st 99 lines?..

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

in a growing log file how will you see the 1st 99 lines?..

Answer / dinesh babu

sed -n '1,99p' filename

Is This Answer Correct ?    4 Yes 1 No

in a growing log file how will you see the 1st 99 lines?..

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

in a growing log file how will you see the 1st 99 lines?..

Answer / dibyalochangiri

ans-using cmd $tail -99f <log file name>

Is This Answer Correct ?    5 Yes 11 No

Post New Answer

More Unix Commands Interview Questions

What is grep r?

0 Answers  


who to change the duplex setting of network interface in command line

1 Answers  


What does pipe () return?

0 Answers  


Why is awk called awk?

0 Answers  


If JFS file system is 100% full how we can increase the file system ?

3 Answers  






Why is grep called grep?

0 Answers  


hw will u use awk in replacing cahrs and files

0 Answers  


Which unix command lists files/folders in alphabetical order?

0 Answers  


what is kernel?

6 Answers  


Which unix command to make a new directory?

0 Answers  


what is the functionality of kernel in unix architecture?

13 Answers   HCL,


How does shebang work?

0 Answers  


Categories