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?
|
|
|||||||||
|
|
|
The fmt command will wrap lines at 75 characters, so use fmt -w [WIDTH] to set longer lines. |
||
|
|
if you have gawk
|
||
|
|
|
Yet another Awk solution:
|
||
|
|
|
|
If you had installed Ruby ,this is the one-liner that do the trick.
|
||
|
|
|
|
The first thing I can think of is this:
Where # is some character not used in the file, that's the downside of it. You'll have to use some unique character ;) |
||
|
|
|
|
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
although it's a little messy to have to rename the file. EDIT: one of the hits found by 'remove blank lines Perl' gave
|
||||||||||
|