Skip to content

Instantly share code, notes, and snippets.

@gramian
Created November 15, 2017 08:22
Show Gist options
  • Save gramian/6a162561d97090787afd4cb955a9a31a to your computer and use it in GitHub Desktop.
Save gramian/6a162561d97090787afd4cb955a9a31a to your computer and use it in GitHub Desktop.
Convert all files in a directory from eps to pdf and crop the pdf to minimum area.
#!/bin/sh
for i in *.eps; do
epspdf ${i}
done
for i in *.pdf; do
pdfcrop ${i} ${i}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment