Skip to content

Instantly share code, notes, and snippets.

@jyalim
Created March 19, 2015 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jyalim/3ee976c6414644bec8d7 to your computer and use it in GitHub Desktop.
Save jyalim/3ee976c6414644bec8d7 to your computer and use it in GitHub Desktop.
batch epstopdf before LaTeX
#!/usr/bin/env bash
# Assumes that script is run from directory with ./*eps
# and NO EXISTING PDF
wc="--will-cite"
parallel $wc --progress epstopdf ::: *eps
parallel $wc mv {} {/.}-eps-converted-to.pdf ::: *pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment