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
Index: T m

⟦a170eb20d⟧ TextFile

    Length: 670 (0x29e)
    Types: TextFile
    Names: »mkdist«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Hangman1/mkdist« 

TextFile

#! /bin/csh
#makes distribution format.  ALL files must be in present dir
echo "#! /bin/sh" > hangman.d
echo "# hangman distribuiton file." >> hangman.d
echo "# to get individual files execute this file." >> hangman.d
echo "# written by:  ritcv\!jxs7451" >> hangman.d
echo "# help from ritcv\!jeb1265 with screen.c (from ogre)" >> hangman.d
echo "echo 'start of hangman v3.00(js)'" >> hangman.d
foreach j (*.c *.h hangman.6 makefile mkdist)
   echo "doing: $j"
   echo "echo x- $j" >> hangman.d
   echo "sed 's/X //' > $j << '/'" >> hangman.d
   cat $j | awk '{print "X",$0}' >> hangman.d
   echo '/' >> hangman.d
end
echo "echo 'end of hangman v3.00(js)'" >> hangman.d