On 2/21/07, Ag. Hatzimanikas <[EMAIL PROTECTED]> wrote: > > This simple loop should do the job,checked in bash/zsh. > =========================================== > for filename in $(find . -type f);do > if [[ -n $(file $filename |grep CRLF) ]]
Slightly more slimmed down: if grep -q '^M$' $filename; then ... I quickly tested that, but I'm pretty sure it works. You have to play the same tricks with ^M as Ag mentioned before. -- Dan -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
