F
flahmeshess
Using Munge, is it possible to remove CR/LF from a file ? How ?
Thanks.
Thanks.
Using Munge, is it possible to remove CR/LF from a file ? How ?
Thanks.
Use the tr command from
<http://www.highend3d.com/downloads/tools/os_utils/76.html>.
C:\TEMP>tr -d \012\015 < input.txt > out.txt
C:\TEMP>wc input.txt output.txt
591 4409 26387 input.txt
0 3895 25205 output.txt