Created
November 24, 2017 17:09
-
-
Save bmmalone/e1841005db81165fba862da949bc7877 to your computer and use it in GitHub Desktop.
Convert all of the eps files in the current directory to png
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 | |
find . -name "*eps" -exec sh -c 'eps2png "${0%.*}"' {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This script uses the
eps2png
script here.