summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/fonts/levy/testfont
diff options
context:
space:
mode:
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