Tips/APPs TIPs2008. 2. 16. 00:47
HOW TO MERGE MULTIPLE BLANK LINES
-------------------------------------------------
blank.pl

#!/usr/bin/perl
$/ = "";
print <>;


-----------------------------------------

awk 1 RS= ORS="\n\n" srcFileName > destFileName


Posted by young.h.rhie