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

⟦8fc54f845⟧ TextFile

    Length: 195 (0xc3)
    Types: TextFile
    Names: »newdefs.awk«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« 
        └─⟦036c765ac⟧ 
            └─⟦this⟧ »TeX3.0/Spiderweb/master/newdefs.awk« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/Spiderweb/master/newdefs.awk« 

TextFile

## Used to convert old Levy CWEB style definitions to Spidery WEB definitions
/#d|@d/ {
	for (i=1; i<NF; i++) {
		if ($i=="#d"||$i=="@d") {
			$(i+1) =  $(i+1) " ="
		}
	}
	print
	next
}
{print}