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?
You need to escape the special characters with a backslash \ in front of the special character. For your case, escape every special character with backslash \ .
By default, when sed reads a line in the pattern space, it discards the terminating newline (\n) character. Nevertheless, we can handle multi-line strings by doing nested reads for every newline.
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.
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With