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?
Use this solution with GNU sed
:
sed ':a;N;$!ba;s/\n/ /g' file
This will read the whole file in a loop (':a;N;$!ba
), then replaces the newline(s) with a space (s/\n/ /g
). Additional substitutions can be simply appended if needed.
Explanation:
sed
starts by reading the first line excluding the newline into the pattern space.:a
.N
.$!ba
($!
means not to do it on the last line. This is necessary to avoid executing N
again, which would terminate the script if there is no more input!).Here is cross-platform compatible syntax which works with BSD and OS X's sed
(as per @Benjie comment):
sed -e ':a' -e 'N' -e '$!ba' -e 's/\n/ /g' file
As you can see, using sed
for this otherwise simple problem is problematic. For a simpler and adequate solution see this answer.