On Fri, 13 Jun 2008 10:19:16 +1000 Cameron Simpson wrote:<br>> That's because \ is a shell quoting character. You need to quote it:-)<br>>   tr -c '\r' '\n' <filename >filename2<br>> Then tr will see the \ character.<br>
<br>So that with:<br><br>    tr -c \\r \\n <filename >filename2<br> <br>I won by two characters ... ;-)<br>Gianluca<br>