http://qs1969.pair.com?node_id=263638


in reply to Re: Re: Making my file all one line
in thread Making my file all one line

Yup. Good point.

perl -pe 'chomp; s/(\S)\s*$/$1 /;' file

The other thing I failed to mention is if you actually want to alter the file and not just dump to the screen, you would want to run 'perl -pi -e'.

Update: jmcnamara msg'ed me and correctly pointed out that my previous regexp didn't work at all, and if it did it would have also created one space for every blank line. :(