DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦592d54885⟧ TextFile

    Length: 274 (0x112)
    Types: TextFile
    Names: »scriptgen.awk«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦8185d185c⟧ »./grep-1.5.tar.Z« 
        └─⟦7013115ca⟧ 
            └─⟦this⟧ »grep-1.5/tests/scriptgen.awk« 
└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦f7bc72012⟧ »./grep-1.4.tar.Z« 
        └─⟦a84cb5e66⟧ 
            └─⟦this⟧ »grep-1.4/tests/scriptgen.awk« 
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦6969b3952⟧ »EurOpenD3/gnu/grep-1.3.tar.Z« 
        └─⟦f9ec7831d⟧ 
            └─⟦this⟧ »grep-1.3/tests/scriptgen.awk« 

TextFile

BEGIN { print "failures=0"; }
!/^#/ && NF == 3 {
	print "echo '" $3 "' | ../egrep -e '" $2 "' > /dev/null 2>&1";
	print "if [ $? != " $1 " ]"
	print "then"
	printf "\techo Spencer test \\#%d failed\n", ++n
	print "\tfailures=1"
	print "fi"
}
END { print "exit $failures"; }