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

⟦e27fb47cb⟧ TextFile

    Length: 534 (0x216)
    Types: TextFile
    Names: »makefont«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./babel/greek/makefont« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦23cd347d5⟧ »unix3.0/babel.tar.Z« 
        └─⟦2fb9f645a⟧ 
            └─⟦this⟧ »babel/greek/makefont« 

TextFile

#!/bin/sh
# In this script $# stands for the number of arguments, not including the
# command name.  $0 is the command name, $1 the first argument, and so
# on.  For instance, typing
#
# makefont grreg10 alw 1
#
# to the UNIX shell gives the same result as typing
#
# cmmf '\mode:=alw;mag:=magstep(1);batchmode;input grreg10'
#

case $# in
0) echo $0 source [ mode [ mag ]];;
1) cmmf '\mode:=localmode;batchmode;input '$1;;
2) cmmf '\mode:='$2';batchmode;input '$1;;
3) cmmf '\mode:='$2';mag:=magstep('$3');batchmode;input '$1;;
esac