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
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 |
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 |
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 |
Answer / krishna reddy
sed -n '7p' <filename>
or
head -8 <filename>|tail -1
Is This Answer Correct ? | 0 Yes | 0 No |
How do I use grep to search for a file?
distinguish between interrupts and exceptions?
when we installing aix os the ssh installed default?
can we use cat command as an editor ..???
What are the general commands in using unix os for a beginner?
What is the syntax of grep command and what is its use?
how to find the 51th record of a file containing 100 records in unix.
what is the difference between npar and vpar in HP-UX?
What is the command to check ports active in UNIX?
What does the “echo” command do?
How do you stop a running process?
Explain the steps that a shell follows while processing a command.