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