diff options
Diffstat (limited to 'Master/texmf-dist/doc/metapost/dviincl/testit.sh')
-rw-r--r-- | Master/texmf-dist/doc/metapost/dviincl/testit.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/metapost/dviincl/testit.sh b/Master/texmf-dist/doc/metapost/dviincl/testit.sh new file mode 100644 index 00000000000..6d665c45f24 --- /dev/null +++ b/Master/texmf-dist/doc/metapost/dviincl/testit.sh @@ -0,0 +1,18 @@ +#!/bin/sh +## simple test of DVI file inclusion in EPS file generated by METAPOST +tex storyx +dvitomp storyx.dvi storyx.mpx +## it is advisable to avoid quotes -- hence the `str' operation: +mpost "\vardef ifi = str storyx.mpx enddef; vardef ofi = str storyx.mpy enddef; input fix_brks.mp" +mpost test-bop.mp +tex test-bop.tex +dvips test-bop.dvi -o test-bop.ps +## CLEAN: +rm storyx.dvi +rm storyx.log +# rm storyx.mpx +# rm storyx.mpy +rm test-bop.dvi +rm test-bop.log +rm test-bop.10* + |