vote up 5 vote down star
3

I unsuccesfully tried:

sed 's#/\n# #g' file
sed 's#^$# #g' file

How to fix it?

flag

1  
Added tr and perl as tags, since alternative tools are acceptable to the OP. – ire_and_curses Aug 9 at 20:00

6 Answers

vote up 11 vote down check

Or use this solution with sed:

sed ':a;N;$!ba;s/\n/ /g'

This will read the whole file in a loop, then replaces the newline(s) with a space.

Update: explanation.

  1. create a register via :a
  2. append the current and next line to the register via N
  3. if we are before the last line, branch to the created register $!ba (`$! means not to do it on the last line (as there should be one final newline)).
  4. finally the substitution replaces every newline with a space on the pattern space (which is the contents of the a register = the whole file.
link|flag
I cannot verify this is correct, but +1 for being able to understand it ;-) – Arjan van Bentem Aug 9 at 20:33
Very cool. I found my first command that works in Ubuntu but not in Mac. – Masi Aug 9 at 21:01
+1 for explanations and solving the original question. – Masi Aug 9 at 21:03
Although the tr-tool is probably the best way to go, I must accept your question because it solves the question. – Masi Aug 9 at 21:06
6  
@Arjan and Masi: OS X uses BSD's sed rather than GNU sed, so there may be some subtle (and some not so subtle) differences in the two. This is a constant pain if you work on both OS X and *nix machines. I usually install GNU's coreutils and findutils on OS X, and ignore the BSD versions. – Telemachus Aug 9 at 21:32
show 3 more comments
vote up 1 vote down

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 ...

> cat > x.sed << eof
:a
N
$!ba
s/\n/ /g
eof

> (echo foo; echo bar) | sed -f x.sed
foo bar

Maybe the sed in OS X is similar.

link|flag
vote up 0 vote down

@OP, if you want to replace newlines in a file, you can just use dos2unix (or unix2dox)

dos2unix yourfile yourfile
link|flag
vote up 5 vote down

I'm not an expert, but I guess in sed you'd first need to append the next line into the pattern space, bij using "N". From the section "Multiline Pattern Space" in "Advanced sed Commands" of the book sed & awk (Dale Dougherty and Arnold Robbins; O'Reilly 1997; page 107 in the preview):

The multiline Next (N) command creates a multiline pattern space by reading a new line of input and appending it to the contents of the pattern space. The original contents of pattern space and the new input line are separated by a newline. The embedded newline character can be matched in patterns by the escape sequence "\n". In a multiline pattern space, the metacharacter "^" matches the very first character of the pattern space, and not the character(s) following any embedded newline(s). Similarly, "$" matches only the final newline in the pattern space, and not any embedded newline(s). After the Next command is executed, control is then passed to subsequent commands in the script.

From man sed:

[2addr]N

Append the next line of input to the pattern space, using an embedded newline character to separate the appended material from the original contents. Note that the current line number changes.

I've used this to search (multiple) badly formatted log files, in which the search string may be found on an "orphaned" next line.

link|flag
+1 for good refences. – Masi Aug 9 at 21:15
One reference is a bit illegal though... Buy the book! ;-) – Arjan van Bentem Aug 9 at 21:51
Ok, now that that link has been removed: is there any policy on that? And would we also close topics discussing all kind of things that may be illegal in some countries? – Arjan van Bentem Aug 10 at 11:20
vote up 5 vote down

The perl version works the way you expected.

perl -i -p -e 's/\n//' file

Edit: As pointed out in the comments, it's worth noting that this edits in place. -i.bak will give you a backup of the original file before the replacement in case your regex isn't as smart as you thought.

link|flag
3  
Please at least mention that -i without a suffix makes no backup. -i.bak protects you from an easy, ugly mistake (say, forgetting to type -p and zeroing out the file). – Telemachus Aug 9 at 20:31
@Telemachus: It's a fair point, but it can be argued either way. The main reason I didn't mention it is that the sed example in the OP's question doesn't make backups, so it seems superfluous here. The other reason is that I've never actually used the backup functionality (I find automatic backups annoying, actually), so I always forget it's there. The third reason is it makes my command line four characters longer. For better or worse (probably worse), I'm a compulsive minimalist; I just prefer brevity. I realise you don't agree. I will try my best to remember to warn about backups in future. – ire_and_curses Aug 9 at 20:53
@Ire_and_curses: Actually, you just made a damn good argument for ignoring me. That is, you have reasons for your choices, and whether or not I agree with the choices, I certainly respect that. I'm not sure entirely why, but I've been on a tear about this particular thing lately (the -i flag in Perl without a suffix). I'm sure I'll find something else to obsess about soon enough. :) – Telemachus Aug 9 at 21:36
1  
@ire_and_curses: I just checked, and I hadn't realized that I've bothered you in particular about this twice in the last two or three days. Time for me to let go of this particular issue and go for a walk, I think. – Telemachus Aug 9 at 21:39
@Telemachus: No problem. I've edited the answer for posterity. Hope you enjoyed the walk. ;) – ire_and_curses Aug 10 at 13:53
vote up 14 vote down

Use tr instead?

tr '\n' ' ' < input
link|flag
I cannot understand why sed cannot do it. Please, clarify to use different tool. – Masi Aug 9 at 19:18
+1 for solving the problem with another tool – Masi Aug 9 at 19:20
3  
Sed is line-based therefore it is hard for it to grasp newlines. – Alexander Gladysh Aug 9 at 19:22
Alexander: Does "stream editor" mean line-based? Perhaps, the name is confusing. – Masi Aug 9 at 19:26
4  
sed works on a "stream" of input, but it comprehends it in newline delimited chunks. It is a unix tool, which means it does one thing very well. The one thing is "work on a file line-wise". Making it do something else will be hard, and risks being buggy. The moral of the story is: choose the right tool. A great many of your questions seem to take the form "How can I make this tool do something it was never meant to do?" Those questions are interesting, but if they come up in the course of solving a real problem, you're probably doing it wrong. – dmckee Aug 9 at 19:39
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.