Monday, February 25, 2008

Bash scripting

This is a bash script that converts a bunch of pdf files to encapsulated postscript:

for filename in `ls *.pdf`
do
     pdftops -eps $filename
done

No comments:

Post a Comment