Created
March 19, 2015 22:05
-
-
Save jyalim/3ee976c6414644bec8d7 to your computer and use it in GitHub Desktop.
batch epstopdf before LaTeX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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