blob: b9dc1834dcab72092b13bb20904336a1970b8f7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/bash
# $Id: makefd,v 1.1 1999/05/25 12:16:26 loreti Exp $
cp $TETEXDIR/texmf/tex/latex/lucidabr/*t1hlh.fd .
for infile in *.fd
do outfile="${infile%h.fd}os.fd"
awk >$outfile -f makefd.awk -v infile=$infile
done
rm *t1hlh.fd
|