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 fo
I take it that you'll probably want to remove lines that only have whitespace.
That can be done with:
sed /^[:space:]*$/d FILE