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 are the general commands in using unix os for a beginner?
Will rm -r* removes hidden files?
What is awk good for?
Which command can you use to find the currently running process in unix server?
what is the function of grep command?
how will you convert a general file to a hidden file?
What does the “echo” command do?
Suppose 1000 processes are running on the system out of those if you have to show only certain process ids which command will you use?
How does pipe () work?
in UNIX,what is the command to remove directory with files?
Which command is used to create a directory?
How do you grep a case insensitive?