home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
library
/
os2
/
rcs
/
rcs56src
/
source
/
grep
/
tests
/
scriptge.awk
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
AWK Script
|
1990-05-07
|
265 b
|
11 lines
BEGIN { print "failures=0"; }
!/^#/ && NF == 3 {
print "echo '" $3 "' | egrep -e '" $2 "' ";
print "if [ $? != " $1 " ]"
print "then"
printf "\techo Spencer test \\#%d failed\n", ++n
print "\tfailures=1"
print "fi"
}
END { print "exit $failures"; }