I need to remove odd lines in a text file to make a down-sampling. I've found this command,
awk 'NR%2==0' file
but it only prints the odd lines in the terminal. How to really remove them?
I don't really care for even or odd, I want them removed from the file or printed in another file. This only prints them in the terminal.
See Question&Answers more detail:os