I suppose tr is a more core method and thus probably a faster way to replace things within a given file.
However tr can only replace equal amounts of characters. meaning...
2 characters can only be replaced with 2 characters which means replacing
\r\n with \n is out of the question via tr
is the next best option sed ?
is sed the most core and fastest way to replacing \r\n with \n in a file given the lack of capabilities in tr ?
would like an example if possible.
