Archive for February 7th, 2008

Remove Empty Lines

Remove empty lines from a file using sed


sed '/^$/d' file.txt

Original Article