to list a particular line in the file
Answers were Sorted based on User's Feedback
Answer / jam
To print a specific line without using a string.
sed -n '1p' <filename>
Where 1 is teh line number
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / deepak
grep -i " give_the search keyword here" (specify the directory location/file to search)
Is This Answer Correct ? | 3 Yes | 2 No |
sed -n '1p' <filename>
head -n filename | tail -1
(change n as per your requirements)
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ranjitha
using head and tail command we can print the required line
as an output.
Is This Answer Correct ? | 2 Yes | 7 No |
Explain the terms ‘system calls’ and ‘library functions’ with respect to unix commands?
What does #!/ Bin sh do?
What is the use of sed command in unix?
What do chmod, chown, chgrp commands do?
Which command is used to copy files?
how to sort the content of the file based on numeric values
what is the use of ls -l command & what is the information it gives about user ?
who to change the duplex setting of network interface in command line
what is Online(STM) and offline diagnostics in HP-UX?
How to setup Disk space as well as memory in solaris10?
How to convert a hidden file to normal visible file?
What is the significance of the 'tee' command?