if we create a file, in that 10 rows(means 1,2,....9,10
like). i want 7 row exactly, which command use in unix?
plz send this question.

Answers were Sorted based on User's Feedback



if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / chinmaya sahu

tail +7 <filename> | head -1

Is This Answer Correct ?    0 Yes 1 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / soumendra

ans- cut -d " " -f 1-7 <file name>

by this u can get all the 7 rows of ur file.
here i give 'space" as the delimeter.
u give the delimeter as u give in the file.

by -f option u can exactly get the 1 to 7 field/rows

Is This Answer Correct ?    0 Yes 1 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / prasad

if we take 2 tables(like emp and dept), we use join stage and how to improve the performance?

Is This Answer Correct ?    0 Yes 2 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / mo

Using VI editor this can be done like this.

type this command.

:1,7w <newfilename>

All Good
Mo

Is This Answer Correct ?    0 Yes 2 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / amol tyagi

head -7 filename

Is This Answer Correct ?    1 Yes 6 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / ashwini

sed -n 1,7p <filename>

Is This Answer Correct ?    2 Yes 8 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / meenu

if u want first 7 rows then
head -n7 <filename>
but if you want only 7th row then
awk 'nr==7 {print}' <fileanme>
or
tail -n4 <filename>|head -n1

Is This Answer Correct ?    0 Yes 6 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / guest

head -n 7 filename

Is This Answer Correct ?    4 Yes 12 No

Post New Answer

More Unix Commands Interview Questions

What is awk command used for?

0 Answers  


How to open a Database using Unix Command Please Do Reply

9 Answers   Cognizant, CTS,


fork in unix ?

4 Answers   BFL,


By using which command we can find the CPU utilization time?

7 Answers   Amazon,


What is the comma to show the space allocation of files?

0 Answers  






What is the use of pipes?

4 Answers  


What does #!/ Bin sh do?

0 Answers  


What command is used to check the current users?

0 Answers  


what is the default signal kill in unix?

8 Answers   IBM,


Name the various commands that are used for the user information in unix.

0 Answers  


the difference between a soft link and a hard link?

6 Answers  


what is exact definition of operating system?

13 Answers  


Categories