vote up 0 vote down star
1

something like

grep -IUr --color '\r\n' .

the above seems to match for literal 'rn' which is not what is desired

the output of this will be piped through xargs into todos to convert crlf to lf like this

grep -IUrl --color '^M' . | xargs -ifile fromdos 'file'

flag

4 Answers

vote up 7 vote down check

Use ctrl-V ctrl-M to enter a literal ctrl-M into your grep string. so:

grep -IUr --color "^M"

will work - if the ^M there is a literal ctrl-M that you input as I suggested.

If you want the list of files, you want to add the -l option as well.

link|flag
vote up 2 vote down

Have you tried dos2unix? It fixes line endings automatically.

link|flag
fromdos / todos seem to be part of dos2unix – Tim Abell Sep 16 '08 at 16:13
vote up 2 vote down

grep probably isn't the tool you want for this. It will print a line for every matching line in every file. Unless you want to, say, run todos 10 times on a 10 line file, grep isn't the best way to go about it. Using find to run file on every file in the tree then grepping through that for "CRLF" will get you one line of output for each file which has dos style line endings:

find . -not -type d -exec file "{}" ";" | grep CRLF

will get you something like:

./1/dos1.txt: ASCII text, with CRLF line terminators
./2/dos2.txt: ASCII text, with CRLF line terminators
./dos.txt: ASCII text, with CRLF line terminators
link|flag
I'd already cracked this, but thanks anyway. grep -IUrl --color '^M' . | xargs -ifile fromdos 'file' – Tim Abell Sep 16 '08 at 16:15
The -l option to grep tells it to just list files (once) instead of listing the matches in each file. – pjz Sep 19 '08 at 12:40
vote up 1 vote down

If your version of grep supports -P (--perl-regexp) option, then

grep -P '\r\n'

could be used.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.