roeber%netscape.com e597bf5b5e Import of Sleepycat DB 2.4.14.1
git-svn-id: svn://10.0.0.236/trunk@12863 18797224-902f-48f8-a5cc-f745e15eee43
1998-10-15 03:56:37 +00:00

20 lines
323 B
Awk

# @(#)clean.awk 8.2 (Sleepycat) 3/22/97
# Minimize the set of function calls per routine.
BEGIN {
o="awk.out"
}
/!START/,/!STOP/ {
print $0 >> o
}
/!STOP/ {
cmd = sprintf("sed -e '/START/d' -e '/STOP/d' %s | sort -u; >%s", \
o, o);
print " !START"
system(cmd);
print " !STOP"
}
!/^ / {
print $0
}