(no title)
southwindcg | 4 months ago
sed -n 2p file
prints the second line of file. The advantage sed has over this line script is it can also print more than one line, should you need to: sed -n 2,4p file
prints lines 2 through 4, inclusive.
tonmoy|4 months ago
1-more|4 months ago
southwindcg|4 months ago
mmsc|4 months ago