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 >
Wrap
Text File
|
1991-07-06
|
482b
|
15 lines
# /u/beebe/tex/makeindex/2-10/makeindex/doc/deblank.awk, Sat Jul 6 12:06:09 1991
# Edit by Nelson H. F. Beebe <beebe@rios.math.utah.edu>
# ========================================================================
# Reduce consecutive blank lines to single blank line.
# Usage:
# awk -f deblank.awk <infile >outfile
# [06-Jul-1991]
# ========================================================================
NF == 0 { nb++ }
NF > 0 { if (nb > 0) print "";
nb = 0;
print $0;
}