Posted by Anonymous on Fri 7 Mar 13:29
report spam | download | new post
- #!/bin/bash
- while test $# -gt 0 ; do
- case $1 in
- *.pdf)
- gs -dNOPAUSE -dNOCACHE -dBATCH \
- -sDEVICE=epswrite -sOutputFile=${1%.pdf}.eps $1
- ;;
- *)
- echo "File $1 not recognised, skipping"
- ;;
- esac
- shift
- done
- # end of script.
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.