# Public domain # # hstrip.pl: Strip empty lines. # while () { chop; if (/^$/) { next; } print $_, "\n"; }