replacement string in grep
I am wondering what are the special characters in the replacement ( second string) string in when I use grep in TextWrangleor Perl or other such substitutions.
Example:
perl -0777pe 's/\r\n/\n/g'
Other than the \ in the second string ( the \n part , what are special characters. What must I escape besides \ ???
Robert