summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/expressg/n2mps.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/expressg/n2mps.sh')
-rw-r--r--Master/texmf-dist/doc/latex/expressg/n2mps.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/expressg/n2mps.sh b/Master/texmf-dist/doc/latex/expressg/n2mps.sh
new file mode 100644
index 00000000000..c4aac713262
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/expressg/n2mps.sh
@@ -0,0 +1,21 @@
+#! /bin/sh
+
+#####################################################################
+# Shell script n2mps.sh
+# Call as: n2mps.sh basename
+# List each file basename.* in the directory and run the Perl script
+# to copy each basename.N to basenameN.mps, where N is an integer
+#
+# Copyright 2000, Mauro S. Costa and Peter R. Wilson
+#####################################################################
+
+basename=${1:?"A file basename is required."}
+extname=N.mps
+echo Files $basename.N, where N is a number, will be copied to $basename$extname
+for file in `ls $basename.*`
+do
+ n2mpsprl.prl $file
+done
+
+####################### end shell script ###########################
+