If you are on a Mac and need to convert Postscript (or other) to PDF, and you are ancient enough to use commandlines, try the attached; I had no idea about convert but found it referenced in /Library/Scripts//Printing Scripts/Convert To PostScript.scpt
for i in *.ps
do
/System/Library/Printers/Libraries/convert -f $i -o $i.pdf
done
Leave a Reply