home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fonts 1 / freshfonts1.bin / programs / amiga / pastex / archives / makeindex2_11.lha / makeindex2.11 / doc / deblank.awk next >
Text File  |  1991-07-06  |  482b  |  15 lines

  1. # /u/beebe/tex/makeindex/2-10/makeindex/doc/deblank.awk, Sat Jul  6 12:06:09 1991
  2. # Edit by Nelson H. F. Beebe <beebe@rios.math.utah.edu>
  3. # ========================================================================
  4. # Reduce consecutive blank lines to single blank line.
  5. # Usage:
  6. #    awk -f deblank.awk <infile >outfile
  7. # [06-Jul-1991]
  8. # ========================================================================
  9. NF == 0    { nb++ }
  10.  
  11. NF > 0    { if (nb > 0) print "";
  12.       nb = 0;
  13.       print $0;
  14.     }
  15.