Skip to content

Instantly share code, notes, and snippets.

@bmmalone
Created November 24, 2017 17:09
Show Gist options
  • Save bmmalone/e1841005db81165fba862da949bc7877 to your computer and use it in GitHub Desktop.
Save bmmalone/e1841005db81165fba862da949bc7877 to your computer and use it in GitHub Desktop.
Convert all of the eps files in the current directory to png
#! /usr/bin/env bash
find . -name "*eps" -exec sh -c 'eps2png "${0%.*}"' {} \;
@bmmalone
Copy link
Author

This script uses the eps2png script here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment