summaryrefslogtreecommitdiff
path: root/info/TrueType/ttf2type1
blob: 01624f8d4fa78efb70b704fa6ea1c724e5625f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

for a in *.ttf
do
    echo $a
    b=`echo $a | sed s/[.]ttf//`
    echo $b

    echo FontName $b:
    ttf2pt1 -a -e $a $b
    ttf2pt1 -a -b $a $b

done