sed to remove new line
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/