[EMAIL PROTECTED] wrote:

Here is one way to find files that have DOS line-endings:
<code>find . -type f | xargs grep -l '^M'</code>
(to add the ^M use "Ctrl-v Ctrl-m" at the command-line).



         Here is one way to find files that have any hidden control
         characters:
         <code>find . -type f | xargs grep -l '[[:cntrl:]]'</code>


THANK YOU!!! That's the piece of wisdom which I was missing! :-) :-) :-)


Vadim




Reply via email to