blob: c0886c08a0de595804c31692258871c2a3c22393 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
#
cat <<EOF
A mayor.fmt előllítása...
EOF
cd $MAYORDIR/print/module-naplo/tex/
fmtutil-sys --cnffile $MAYORDIR/print/module-naplo/tex/mayor.cnf --fmtdir $MAYORDIR/print/module-naplo/ --byfmt mayor
# Ha az fmtutil nem a tex alkönyvtárba hozná létre a mayor.fmt-t, akkor áthelyezzük:
if [ -e "$MAYORDIR/print/module-naplo/mayor.fmt" ]; then
mv $MAYORDIR/print/module-naplo/mayor.fmt $MAYORDIR/print/module-naplo/tex/mayor.fmt
fi
|