Skip to content

Instantly share code, notes, and snippets.

@bmmalone
Created November 24, 2017 17:09
Show Gist options
  • Select an option

  • Save bmmalone/e1841005db81165fba862da949bc7877 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown
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