I have a text file which some of the entries look like this:
"Hello, my name is
George. Its very nice to meet you"
and I would like to run an SED or AWK command that gives me the following result:
"Hello, my name is George. Its very nice to meet you"
I know I can remove blank lines with SED by running:
sed '/^\s*$/d'
That command only removes the blank line but it does not join the string as shown above.
Thanks