sed ‘s/n//g’ <–does not work
Because sed reads input a line at a time, and thus, won’t see n
SeeĀ http://backreference.org/2009/12/23/how-to-match-newlines-in-sed/
sed ‘s/n//g’ <–does not work
Because sed reads input a line at a time, and thus, won’t see n
SeeĀ http://backreference.org/2009/12/23/how-to-match-newlines-in-sed/