vote up 1 vote down star

I have a file where I want to convert "\n" to " " and "\n\n" to "\n". For example:

I
had
a
toy
.

It
was
good
.

Becomes:

I had a toy .
It was good .

Does anyone have a Unix one-liner for this operation?

flag

56% accept rate
2  
Your example does not reflect your rules. If "\n" becomes " ", then there would be no newlines left AT ALL. – gahooa Sep 24 at 0:07
4  
I think his example makes the question clear. – acrosman Sep 24 at 0:15

6 Answers

vote up 3 vote down
fmt | sed '/^$/d'

The fmt command will wrap lines at 75 characters, so use fmt -w [WIDTH] to set longer lines.

link|flag
Do you even need the sed command here? I thought fmt would handle this on its own. – acrosman Sep 24 at 0:18
acrosman, I tried w/o using sed. I couldn't find an option to fmt that would remove the blank line. – bmb Sep 24 at 0:19
vote up 2 vote down

if you have gawk

# awk 'BEGIN{RS=""}{$1=$1}1'  file
I had a toy .
It was good .
link|flag
+1 nice! This doesn't have the line length limit that my answer has. – bmb Sep 24 at 3:34
vote up 1 vote down

Yet another Awk solution:

$ cat data.txt 
I
had
a
toy
.

It
was
good
.

$ awk '{printf "%s ", $0} /^$/{print ""}' data.txt 
I had a toy .  
It was good .
link|flag
vote up 0 vote down

If you had installed Ruby ,this is the one-liner that do the trick.

irb(main):014:0> puts f.gsub(/[a-zA-Z.](\n)/) {|s| s.chomp +" "}
I had a toy . 
It was good .
link|flag
vote up 0 vote down

The first thing I can think of is this:

tr '\n' '#' | sed 's/##/\n/g' | sed 's/#//g'

Where # is some character not used in the file, that's the downside of it. You'll have to use some unique character ;)

link|flag
vote up 0 vote down

I think bmb's comment to his/her own answer hinted at the difficulty you may have had if you 'googled' for suggestions.

Google 'remove blank lines'.

Maybe fmt won't do it by itself, but there are many methods.

I liked the grep approach

grep -v "^$" filename > newfilename

although it's a little messy to have to rename the file.

EDIT: one of the hits found by 'remove blank lines Perl' gave

perl -pi -e "s/^\n//" file.txt
link|flag
grep doesn't have the ability to "modify" content. – ghostdog74 Sep 24 at 0:46
but it's not modifying content - it's just filtering out blank lines and sending them to a different file. – pavium Sep 24 at 0:49
oops, I mean grep is sending everything but the blank lines to a different file. Grep is a filter, and pretty useful at that. – pavium Sep 24 at 0:50
You could avoid renaming by using sponge from the moreutils package. grep -v "^$" filename | sponge filename – Kalmi Sep 24 at 0:56
I would probably avoid renaming the file, and avoid a pipeline, by invoking perl in 'edit in place' mode. – pavium Sep 24 at 1:24
show 3 more comments

Your Answer

Get an OpenID
or

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