On 3/10/06, Bryan Sant <bryan.sant at gmail.com> wrote:
> find . -type f | xargs tr -d '\r'
Sorry, that totally won't work. I should read the tr man page before
I start spouting off advice. Instead of that, do this to get the
correct effect:
find . -type f -exec sed -i 's/\r//g' {} \;
-Bryan