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 / manu

if you want 1 to 7 row then
head -7 filename
if you want only 7th row exactly then
head -7 filename|tail -1
or
tail +7 filename|head -1
or
cat -n filename|grep '^7' filename

Is This Answer Correct ?    1 Yes 0 No

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

Answer / sivaprasad

hi, this is sivaprasad from school of IT.

If you want exactly 7 line u can use sed command as follows

$sed -n '7,7p' filename

ok.

Is This Answer Correct ?    1 Yes 0 No

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

Answer / niranjan

To display first 7 lines of file:-

1) head -7 filename

2) cat filename|head -7



To display only 7th line of file:-

1) head -7 filename|tail -1

2) cat filename|head -7|tail -1

3) tail +7 filename|head -1

choice is ur's..Which one u feel looks gud...:):):)

Is This Answer Correct ?    1 Yes 0 No

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

Answer / anandthks

head -7 <filename>| tail -1

Is This Answer Correct ?    0 Yes 0 No

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

Answer / hari

hai this Hari

try this

$sed -n '1,7p' <filename>

Is This Answer Correct ?    0 Yes 0 No

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

Answer / hari

$tail 7+ filename|head -1

Is This Answer Correct ?    0 Yes 0 No

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

Answer / srinivas bolusupati

sed '7d' fileName.txt

Is This Answer Correct ?    0 Yes 0 No

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

Answer / krishna reddy

sed -n '7p' <filename>

or
head -8 <filename>|tail -1

Is This Answer Correct ?    0 Yes 0 No

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

Answer / manikandant

sed -n '5p' filename

Is This Answer Correct ?    2 Yes 3 No

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

Answer / sharda mishra

sen -n '7,7p' file name

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Unix Commands Interview Questions

How do I use grep to search for a file?

0 Answers  


distinguish between interrupts and exceptions?

2 Answers   Infosys, Wipro,


when we installing aix os the ssh installed default?

2 Answers  


can we use cat command as an editor ..???

12 Answers   TCS,


What are the general commands in using unix os for a beginner?

0 Answers  


What is the syntax of grep command and what is its use?

6 Answers  


how to find the 51th record of a file containing 100 records in unix.

12 Answers   IBM,


what is the difference between npar and vpar in HP-UX?

1 Answers   CSC,


What is the command to check ports active in UNIX?

4 Answers   Accenture, IBM,


What does the “echo” command do?

0 Answers  


How do you stop a running process?

7 Answers  


Explain the steps that a shell follows while processing a command.

0 Answers  


Categories