Search Results

1
vote

how do you search for files containing dos line endings (CRLF) with grep under linux?

If your version of grep supports -P (--perl-regexp) option, then grep -P '\r\n' could be used. …