Quoting Nick Rout <[EMAIL PROTECTED]>: 
 
> to delete every crlf to a space. 
>  
> tried  
>  
> sed 's/\015\012/" "/' dbcontents.txt >dbcontents2.txt and 
> sed 's/\015\012/\024/' dbcontents.txt >dbcontents2.txt and 
How about something like 
 
cat dbcontents.txt | tr -d "\015" | tr "\012" ' ' > dbcontents2.txt 
 
Seems to work for me. 
 
-- 
C. Sawtell 
 

Reply via email to