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.
