Skip to content

Instantly share code, notes, and snippets.

@HebeHH
Created February 19, 2019 09:48
Show Gist options
  • Save HebeHH/9f4dd3acc50c3baa5cf0b00ffee8c02e to your computer and use it in GitHub Desktop.
Save HebeHH/9f4dd3acc50c3baa5cf0b00ffee8c02e to your computer and use it in GitHub Desktop.
Batch eps to pdf from mac command line
FILES="*.eps"; for f in $FILES; do ps2pdf -dEPSCrop $f; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment