summaryrefslogtreecommitdiff
path: root/Master/texmf-doc/doc/english/truetype/ttf2type1
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-doc/doc/english/truetype/ttf2type1')
-rw-r--r--Master/texmf-doc/doc/english/truetype/ttf2type113
1 files changed, 0 insertions, 13 deletions
diff --git a/Master/texmf-doc/doc/english/truetype/ttf2type1 b/Master/texmf-doc/doc/english/truetype/ttf2type1
deleted file mode 100644
index 01624f8d4fa..00000000000
--- a/Master/texmf-doc/doc/english/truetype/ttf2type1
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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