I have a file that contains:
something
something else
something else again
I need a bash command, sed/grep w.e that will produce the following output
something
something else
something else again
In other words, I need to remove multiple blank lines with just a single blank line. gred/sed are line based. I've never found a BASH solution that would work on multi-line regex patterns. Any suggestions?