Very useful sed one liners...
Hi.
I wanted to let you know that I wrote an article "Famous Sed One-Liners Explained" which explains all the sed one-liners in the file sed1line.txt which is floating around the internet.
Hope you find it useful! :)
Sincerely, Peteris Krumins
$ sed '/^$/d' file > file.new
More information about formatting options
Sed one-liners explained
Hi.
I wanted to let you know that I wrote an article "Famous Sed One-Liners Explained" which explains all the sed one-liners in the file sed1line.txt which is floating around the internet.
Hope you find it useful! :)
Sincerely,
Peteris Krumins
Remove all empty lines in a text file
$ sed '/^$/d' file > file.newPost new comment