Unico Hommes wrote: > David Crossley wrote: > > > > Try running the command as shown at > > http://cocoon.apache.org/community/committer.html > > except add the "-w" option to grep. > > :-( no luck. I remember reading something about the -w option for cygwin > but cannot find it now. I will look into it later. According to man grep > the -w option short for --word-regexp . Did you mean this?
That is correct. It is just to help narrow the search to only text files. You could do without it. Are you running the last command on that page, and adding the ^M as shown? find . -type f | xargs grep -l '^M' | xargs file \ | grep -i -w text | cut -f1 -d: --David
