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

⟦028af669a⟧ TextFile

    Length: 169 (0xa9)
    Types: TextFile
    Names: »makepxl.sh«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./tex82/Unsupported/makepxl.sh« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦beba6c409⟧ »unix3.0/Unsupported.tar.Z« 
        └─⟦25c524ae4⟧ 
            └─⟦this⟧ »Unsupported/makepxl.sh« 

TextFile

#!/bin/sh
# Converts all gf files in a directory into pxl files
# in the current directory.
GFDIR=$1
for f in $GFDIR/*gf
do
  echo gftopxl $f
  $TEX/bin/gftopxl $f
done