I have a file with blank lines and I need to double space the lines in the file. Meaning I need a blank line between two lines with text in it. Can you show me an easy way to do it with awk and/or sed

link|improve this question

What do you want to do with the existing blank lines? – glenn jackman Jul 1 '11 at 1:24
feedback

7 Answers

up vote 6 down vote accepted

Try this

sed '/^$/d' fileName | sed G
link|improve this answer
+1 first with a working solution – jcomeau_ictx Jul 1 '11 at 1:09
feedback

Assuming:

  1. You want to do this in just SED
  2. You want to do it all in one pass
  3. Some of your "blank" lines might contain tabs|spaces
  4. The current spacing is non-uniform (0, 1, or more blanks after each line)
  5. You want to end up with uniform double-spacing

Try this:

#!bin/sed -f
/^[ \t]*$/d
/^..*$/a\

The first line says:       If you see a "blank line", delete it.
The second line says: If you see a non-blank line, append a line after it.

link|improve this answer
feedback
jcomeau@intrepid:/tmp$ cat test.txt
test
tset 2
test 3
test 4
jcomeau@intrepid:/tmp$ sed 's/\(.*\)/\1\n/' test.txt
test

tset 2

test 3

test 4

Sai's sed G test.txt works also, but I have no idea how.

link|improve this answer
'how': in a first pass, you delete all empty lines (assuming lines do not contain white space); in a second pass, you append the content of hold space (==an empty line as we put nothing in it) to each line, then print it. – gnometorule Jan 2 at 17:10
feedback

Assuming you want to keep the existing blank lines intact:

awk '
    prev && $0 {print ""}
    {print; prev = $0}
'

The first test will only be true if both the previous line and the current line are non-empty.

link|improve this answer
feedback

Try this

awk '{print $0 "\n"}' fileName
link|improve this answer
feedback

Assuming:

  1. You want to do this in just AWK
  2. You want to do it all in one pass
  3. Some of your "blank" lines might contain tabs|spaces
  4. The current spacing is non-uniform (0, 1, or more blanks after each line)
  5. You want to end up with uniform double-spacing

Try this:

awk '$0 !~ /^[ \t]*$/ { print $0, "\n" }' <file>

Breaking this up,

  The part before the curly bracket says:   Match only non-blank lines
  The part within the curly brackets says:   Print this line and append one more (a blank one)

link|improve this answer
feedback

using sed

$ sed G input.txt | cat -s
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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