Remove odd lines in a text file
awk, dropbox, linux, sed, text
Solution
# awk 'NR%2==0' file
http://www.here.is.a.hyper.link.net/
http://www.here.is.another.hyper.link.net/
Problem
File: ``` /home/USER/DIR/a http://www.here.is.a.hyper.link.net/ /home/USER/DIR/b http://www.here.is.another.hyper.link.net/ ``` Need to remove all the odd lines in this file (`PUBLIC-DIRECTORY-LIST`)? Its for my batch script which can be found below (dropbox batch puburl creator): ``` for PATH in `cat LIST` do echo $PATH dropbox puburl $PATH done > PUBLIC-DIRECTORY-LIST ``` Do I just append the command to prune `PUBLIC-DIRECTORY-LIST` at the end of the script?