I want to search for files containing DOS line endings with grep on Linux. Something like this:
grep -IUr --color \'\\
If your version of grep supports -P (--perl-regexp) option, then
grep -lUP '\r$'
could be used.