vote up 0 vote down star

Probably easy to answer for you guys:

How can i get awk to put a blank line into my file every n lines?

flag

4 Answers

vote up 7 vote down

awk '{ if ((NR % 5) == 0) printf("\n"); print; }'

for n == 5, of course. Substitute whatever your idea of n is.

link|flag
vote up 1 vote down

A more "awk-ish" way to write smcameron's answer:

awk 'NR % 5 == 0 {print ""} 1' myfile

The trailing "1" is a condition that is always true, and will trigger the default action which is to print the current line.

link|flag
vote up 0 vote down
$ awk -v n=5 '$0=(!(NR%n))?"\n"$0:$0'

If you want to change 'n', please set the parameter 'n' by awk's -v option.

link|flag
vote up 0 vote down

awk '{print; if (FNR % 5 == 0 ) printf "\n";}' your_file

I guess 'print' should be before 'printf', and FNR is more accurate for your task.

link|flag

Your Answer

Get an OpenID
or

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