Skip to content

Instantly share code, notes, and snippets.

@clemlatz
Created January 15, 2018 10:54
Show Gist options
  • Save clemlatz/ec6bd451081690bef9c6e3817ad6f6b7 to your computer and use it in GitHub Desktop.
Save clemlatz/ec6bd451081690bef9c6e3817ad6f6b7 to your computer and use it in GitHub Desktop.
Convert EPS files to JPEG
# Remove single quote and space in file names
for f in *\'*; do mv "$f" "${f//\'/_}"; done
for f in *\ *; do mv "$f" "${f//\ /_}"; done
# Convert to PDF
echo *.eps | xargs -n1 pstopdf
# Move files to pdf folder
cd ../pdf/
mv $(echo ../eps/*.pdf) .
# Convert to JPEG
sips -s format jpeg *.pdf --out ../jpg/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment