I need to search through a number of files, to search for lines that end with a LF (\n) only as opposed to a CRLF (\r\n).
How can I perform a search for only the LF and not pick up all the CRLF characters. By performing a search for '\n', it will pick up both.
I am looking to find: \n
while ignoring: \r\n