I unsuccesfully tried:
sed 's#/\n# #g' file
sed 's#^$# #g' file
How to fix it?
|
3
|
|||||
|
|
|
Or use this solution with sed:
This will read the whole file in a loop, then replaces the newline(s) with a space. Update: explanation.
|
||||||||||||
|
|
|
The answer with the :a register ... http://stackoverflow.com/questions/1251999/sed-how-can-i-replace-a-newline-n/1252191#1252191 ... does not work in freebsd 7.2 on the command line: ( echo foo ; echo bar ) | sed ':a;N;$!ba;s/\n/ /g' sed: 1: ":a;N;$!ba;s/\n/ /g": unused label 'a;N;$!ba;s/\n/ /g' foo bar But does if you put the sed script in a file or use -e to "build" the sed script... > (echo foo; echo bar) | sed -e :a -e N -e '$!ba' -e 's/\n/ /g' foo bar or ...
Maybe the sed in OS X is similar. |
|||
|
|
|
|
@OP, if you want to replace newlines in a file, you can just use dos2unix (or unix2dox)
|
||
|
|
|
|
I'm not an expert, but I guess in
From
I've used this to search (multiple) badly formatted log files, in which the search string may be found on an "orphaned" next line. |
||||||
|
|
|
The perl version works the way you expected.
Edit: As pointed out in the comments, it's worth noting that this edits in place. |
||||||||||||||
|
|
|
Use
|
||||||||||||||
|