Can someone tell me a 'one line' sed command that prints out the lines 100-104 and 205-210 of of any file that has 500 lines in total ?
I tried this one :
sed -n '100,104'p unique_undetermined
Can someone tell me a 'one line' sed command that prints out the lines 100-104 and 205-210 of of any file that has 500 lines in total ?
I tried this one :
sed -n '100,104'p unique_undetermined
@Sundeep is suggesting the following:
sed -n '100,104p;205,210p' unique_undetermined