Skip to content

Instantly share code, notes, and snippets.

@lexbeelen
Created February 13, 2017 16:18
Show Gist options
  • Select an option

  • Save lexbeelen/7d238299aefe4d3537c8f42c2643fc2e to your computer and use it in GitHub Desktop.

Select an option

Save lexbeelen/7d238299aefe4d3537c8f42c2643fc2e to your computer and use it in GitHub Desktop.
Convert pdf's to png's shell script
#!/bin/sh
echo 'START TO CONVERT PDF TO PNG';
find DIRECTORY -name '*.pdf' -execdir mogrify -format png *.pdf[0] \;
echo 'DONE';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment