Consider the file
$ cat name.txt
1 k
2 ka
3 kam
4 kama
5 kamar
6 kamara
7 kamaraj
8 kamaraju
9 kamaraju
10 kamaraju k
11 kamaraju ku
12 kamaraju kus
13 kamaraju kusu
14 kamaraju kusum
15 kamaraju kusuma
16 kamaraju kusuman
17 kamaraju kusumanc
18 kamaraju kusumanch
19 kamaraju kusumanchi
To print the contents of lines between 5 and 8
$ sed -n '5,8p' name.txt
5 kamar
6 kamara
7 kamaraj
8 kamaraju
$echo $?
0
To print the lines 10 to 20, just do
$ sed -n '10,20p' name.txt
10 kamaraju k
11 kamaraju ku
12 kamaraju kus
13 kamaraju kusu
14 kamaraju kusum
15 kamaraju kusuma
16 kamaraju kusuman
17 kamaraju kusumanc
18 kamaraju kusumanch
19 kamaraju kusumanchi
$echo $?
0
Note that this command is successful even though the specified right limit (20) is greater than the number of lines in the file (19).
To print the nth line of a file (w.l.g. say n=8), just do
$ sed -n 8p name.txt
8 kamaraju
$ echo $?
0
End of line is represented by $. So, to print from 17th line till the end of the file, do
$ sed -n '17,$p' name.txt
17 kamaraju kusumanc
18 kamaraju kusumanch
19 kamaraju kusumanchi
$ echo $?
0
Malayamarutham is a mellifluous raaga in carnatic music which will make one soft at heart. In telugu, malaya maarutham is a cool evening breeze which invigorates mind, body & heart.
Feedback, suggestions, criticisms, typos, mistakes, errors etc., (no matter how small you think they are) on the articles of this blog are very welcome. They can be directed to kamaraju at gmail dot com.
Subscribe to:
Post Comments (Atom)
Blog Archive
-
►
2007
(38)
-
►
April
(8)
- gnuplot with GNU readline and history support
- calculate md5sums in windows
- recipe for building texmacs package with pdebuild
- recipe for building texmacs package with pbuilder
- executing octave scripts
- insert page numbers in a texmacs document
- copy paste code into blogger
- Google groups feature suggestions - 1
-
►
March
(11)
- exiting full screen modes
- search for one word and exclude another word in vi...
- Disable system bell
- inserting a horizontal line in texmacs
- list of all Debian machines
- convert mp3 to wav
- ఎన్ని సార్లు విన్నా ఇంకా ఇంకా వినాలనిపించే ...
- gnuplot realted links
- various ways of reading man pages
- My experience with knujon
-
►
April
(8)
0 comments:
Post a Comment