Archive for April 27th, 2008

Remove Even Lines

This command removes all the even lines from the file given as the argument


cat example.txt|awk 'NR%2==1'