Quoting Nick Rout <[EMAIL PROTECTED]>:
to delete every crlf to a space.
How about something like cat dbcontents.txt | tr -d "\015" | tr "\012" ' ' > dbcontents2.txt Seems to work for me.
Unless you have single \015s or single \012s that you don't want converted/deleted, and only want to space-ify the crlf duo.
Cheers, Carl.
