diff options
Diffstat (limited to 'postpost/all_eps2pdf')
-rwxr-xr-x | postpost/all_eps2pdf | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/postpost/all_eps2pdf b/postpost/all_eps2pdf new file mode 100755 index 0000000..739a7c4 --- /dev/null +++ b/postpost/all_eps2pdf @@ -0,0 +1,17 @@ +#!/bin/sh + +for t in $1* +do + if [ -e $t ] + then + for s in $t/Post/*.eps + do + if [ -e $s ] + then + echo $s; + epstopdf $s; + fi + done + fi +done + |