home *** CD-ROM | disk | FTP | other *** search
- # QTAwk utility to compress multiple blank lines to one blank line
- #
- /^{_w}*$/ { # find blank lines
- if ( !i++ ) print ""; # check if first blank line - print if it is
- next; # skip to next line
- }
-
- {
- i = FALSE; # reset blank line counter
- print; # print non-blank lines
- }
-