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 |
What does the “echo” command do?
What is “chmod” command?
How can we use grep command in unix?
What is the significance of the 'tee' command?
what is virtual machine?
How to install scsi driver in unix? give me explanation clearly?
What does the metacharacter mean?
How do you know about running processes of a particular user?
Write a command that will display files in the current directory, in a colored, long format.
what is shell?
use of ls command
How can you see the command line history?