How can I replace a newline ("\n
") with a space ("") using the
sed
command?
I unsuccessfully tried:
sed 's#\n# #g' file
sed 's#^$# #g' file
How do I fix it?
sed
is intended to be used on line-based input. Although it can do what you need.
A better option here is to use the tr
command as follows:
tr '\n' ' ' < input_filename
or remove the newline characters entirely:
tr -d '\n' < input.txt > output.txt
or if you have the GNU version (with its long options)
tr --delete '\n' < input.txt > output.txt