Snippets 1000
Python and bash snippets
pretty
Thursday, April 25, 2013
Show specific line in large file
Show only line 20
sed -n '20p' file_name
Show 10 through 20
sed -n '10,20p' file_name
Show 10 and 20
sed -n '10p;20p' file_name
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)