I unsuccesfully tried:
sed 's#/\n# #g' file
sed 's#^$# #g' file
How to fix it?
|
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.
|
|||||||||||||||||||||
|
|
Use
|
|||||||||||||||||||||
|
|
Fast answer:
sed will loop through step 1 to 3 until it reach the last line, getting all lines fit in the pattern space where sed will substitute all \n characters Alternatives: All alternatives, unlike sed will not need to reach the last line to begin the process with bash, slow
with perl, sed-like speed
with tr, faster than sed, can replace by one character only
with paste, faster than tr, can replace by one character only
Other alternative like "echo $(< file)" or awk are slow, work only on small file and need to process the whole file to begin the process Long answer from the sed FAQ 5.10: 5.10. Why can't I match or delete a newline using the \n escape The \n will never match the newline at the end-of-line because the Sed works like this: sed reads one line at a time, chops off the
will NEVER work, because the trailing newline is removed before
Since versions of sed other than GNU sed have limits to the size of To match a block of two or more lines, there are 3 basic choices: Choices (1) and (2) will put an \n into the pattern space, where it Choice (3) will not put an \n into the pattern space, but it does
in addition to the traditional '/from here/,/to there/{...}' range |
|||||||||||
|
|
The perl version works the way you expected.
Edit: As pointed out in the comments, it's worth noting that this edits in place. |
|||||||||||||||||||
|
|
In order to replace all newlines with spaces using awk, without reading the whole file into memory:
If you want a final newline:
You can use a character other than space:
|
|||
|
|
|
who needs sed. bash:
|
|||||||||||||
|
|
A shorter awk alternative:
|
||||
|
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. |
|||||||
|
|
olldddd thread, but three things. 0.) 1.) stream != line based. 2.) That being said,
works just fine in GNU |
||||
|
The answer with the :a register ... SED: How can I replace a newline (\n)? ... 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. |
||||
|
|
|
In response to the "tr" solution above, on Windows (probably using the Gnuwin32 version of tr), the proposed solution:
was not working for me, it'd either error or actually replace the \n w/ '' for some reason. Using another feature of tr, the "delete" option -d did work though:
or '\r\n' instead of '\n' |
|||||
|
Easy-to-understand SolutionI had this problem. The kicker was that I needed the solution to work on BSD (osx) and GNU (linux, cygwin)
Output:
(has trailing newline) Works on Linux, OS X, and BSD - even without UTF8 support or with a crappy terminal.
|
||||
|
|
|
Using Awk:
|
|||||
|
|
In some situation maybe you can change the RS to some other string or char, this way \n is available for sub/gsub
The power of shell scripting is that if you do not know how to do it in one way you can do it in another way. And many times you have more things to take into account than make a complex solution on a simple problem. Regarding the thing that gawk is slow... and reads the file into memory, I do not know this but to me gawk seems to work with one line at the time and is very very fast (not that fast as some of the others but the time to write and test also counts) . I process MB and even GB of data and the only limit I found is line size. |
||||
|
|
Replace newlines with any string, and replace the last newline tooThe pure
Result:
|
|||
|
|
|
@OP, if you want to replace newlines in a file, you can just use dos2unix (or unix2dox)
|
|||
|
|
|
On Mac OS X (using FreeBSD sed):
|
|||
|
|
|
A solution I particularly like is to append all the file in the hold space and replace all newlines at the end of file:
However, someone said me the hold space can be finite in some sed implementations. |
|||
|
|
|
I used a hybrid approach to get around the newline thing by using tr to replace newlines with tabs, then replacing tabs with whatever I want. In this case "
|
||||
|
|
|
You could use However, it would have problems if your input has any case of an |
|||
|
|
|
This would work too -
|
|||
|
|
|
Sed without buffers (good for real time output)
|
|||
|
|
|
This is really simple .. I really gt irritated when i found the solution .. There was just one more back slash missing .. This is it..
|
|||||
|
|
this is a lot simpler than most answers, also it is working: echo `sed -e 's/$/\ |\ /g' file` |
|||||
|
|
in sed replacement part, type backslash, hit enter to go to 2nd line, then end it with /g':
|
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
trinstead ofsedas suggested in @dmckee's answer below. It's much simpler and the "right tool for the job." – T. Brian Jones Jan 4 at 6:55