as described here
Sometimes I need to convert all the eps files to pdf, for instance because I use latexpdf and I have all the images in eps. Here is a short linux bash script that does the job.
#/usr/bin/bash
for file in *.eps
do
epstopdf $file
done
This I have in a script file in the path. Don't forget to install the ghostscript package to be able to use epstopdf command.
Or another solution is using the find command:
$ find . -name "*.eps" -exec epstopdf {} \;
as described in http://www.linuxquestions.org/questions/linux-newbie-8/using-multiple-epstopdf-command-854618/
No comments:
Post a Comment