Probably easy to answer for you guys:
How can i get awk to put a blank line into my file every n lines?
|
|
|
|
|
|
|
for n == 5, of course. Substitute whatever your idea of n is. |
||
|
|
|
|
A more "awk-ish" way to write smcameron's answer:
The trailing "1" is a condition that is always true, and will trigger the default action which is to print the current line. |
||
|
|
|
|
If you want to change 'n', please set the parameter 'n' by awk's -v option. |
||
|
|
|
|
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. |
||
|
|