Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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'

share|improve this question

9 Answers

up vote 29 down vote accepted

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.

share|improve this answer
2  
As a quick hack that would work but I think human readbale solution would be: grep $'\r' /bash shell only/ or grep printf '\r' – akostadinov Jun 4 '12 at 12:25
@akostadinov +1, But backticks got interpreted out of your comment ;) The second option would, in other words, be grep $(printf '\r'). But for most practical uses involving bash, I would stick with $'\r'. – jankes Nov 12 '12 at 15:53

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
share|improve this answer
I'd already cracked this, but thanks anyway. grep -IUrl --color '^M' . | xargs -ifile fromdos 'file' – Tim Abell Sep 16 '08 at 16:15
1  
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

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

grep -P '\r\n'

could be used.

share|improve this answer
# list files containing dos line endings (CRLF)

cr="$(printf "\r")"    # alternative to ctrl-V ctrl-M

grep -Ilsr "${cr}$" . 

grep -Ilsr $'\r$' .   # yet another & even shorter alternative
share|improve this answer

Have you tried dos2unix? It fixes line endings automatically.

share|improve this answer
fromdos / todos seem to be part of dos2unix – Tim Abell Sep 16 '08 at 16:13
In some Linux distro's, like Ubuntu, the dos2unix package is now called tofrodos. – Martijn Heemels May 30 '12 at 10:19

This works for me

grep -IUrl $'\r' .
share|improve this answer

If, like me, your minimalist unix doesn't include niceties like the file command, and backslashes in your grep expressions just don't cooperate, try this:

$ for file in `find . -type f` ; do
> dump $file | cut -c9-50 | egrep -m1 -q ' 0d| 0d'
> if [ $? -eq 0 ] ; then echo $file ; fi
> done

Modifications you may want to make to the above include:

  • tweak the find command to locate only the files you want to scan
  • change the dump command to od or whatever file dump utility you have
  • confirm that the cut command includes both a leading and trailing space as well as just the hexadecimal character output from the dump utility
  • limit the dump output to the first 1000 characters or so for efficiency

For example, something like this may work for you using od instead of dump:

 od -t x2 -N 1000 $file | cut -c8- | egrep -m1 -q ' 0d| 0d|0d$'
share|improve this answer

I found a tutorial on this site which worked well... http://www.thingy-ma-jig.co.uk/blog/25-11-2010/fixing-dos-line-endings

share|improve this answer

The query was search... I have a similar issue... somebody submitted mixed line endings into the version control, so now we have a bunch of files with 0x0d 0x0d 0x0a line endings. Note that grep -P '\x0d\x0a' finds all lines, whereas grep -P '\x0d\x0d\x0a' and grep -P '\x0d\x0d' finds no lines so there may be something "else" going on inside grep when it comes to line ending patterns... unfortunately for me!-P

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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