On 3/10/06, Bryan Sant <[EMAIL PROTECTED]> 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
/*
PLUG: http://plug.org, #utah on irc.freenode.net
Unsubscribe: http://plug.org/mailman/options/plug
Don't fear the penguin.
*/
