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.

I have a .txt file created in Windows and now should be edited in Linux. I want to match end of a line with grep, let's say content of the line I gonna to find is "foo bar" in file bar. Then I issue the command grep 'r$' bar, no output yielded.

Given in Windows a new line consists of '\r\n', different from Linux/Unix a single '\n', I think there must be something subtle related to this. Then I convert the file with dos2unix and voila, it works.

My question is how can I match the content without convert the original file?

Any advice will be highly appreciated.

Thanks and Best Regards.

share|improve this question

2 Answers

up vote 1 down vote accepted

If your grep supports -P (perl-regexp), then to match a CRLF:

grep -P '\r$' file

or:

grep Ctrl+VCtrl+M file

(Ctrl+VCtrl+M will produce ^M)

share|improve this answer

Use a pattern with matches both line ends: r\r?\n

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.