summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/fonts/levy/testfont
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-09 00:47:01 +0000
committerKarl Berry <karl@freefriends.org>2006-01-09 00:47:01 +0000
commit950209b26f70aa87ed07c54f82a95b6f03b7c3a0 (patch)
tree32b2d4ab4e36aee3a9aaf41877a5c0c581de9b77 /Master/texmf-dist/doc/fonts/levy/testfont
parent71c5ce4be7e36bdc6bdda98641bc9368e28223ad (diff)
doc/fonts
git-svn-id: svn://tug.org/texlive/trunk@83 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/fonts/levy/testfont')
-rw-r--r--Master/texmf-dist/doc/fonts/levy/testfont25
1 files changed, 25 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/fonts/levy/testfont b/Master/texmf-dist/doc/fonts/levy/testfont
new file mode 100644
index 00000000000..470e6835344
--- /dev/null
+++ b/Master/texmf-dist/doc/fonts/levy/testfont
@@ -0,0 +1,25 @@
+#!/bin/sh
+# In this script $1 stands for the first argument passed to the
+# script. The three lines preceding EOF are passed as standard
+# input to the program called on the first line. For example,
+# typing
+#
+# testfont foo
+#
+# to the UNIX shell has the same effect as typing
+#
+# tex grtestfont %this line is read by the shell
+# foo %these three lines are read by TeX
+# \bigtest
+# \end
+# mv grtestfont.dvi foo.dvi %this is again read by the shell
+#
+# mv means move, or rename.
+#
+
+tex grtestfont << EOF
+$1
+\bigtest
+\end
+EOF
+mv grtestfont.dvi $1.dvi