Skip to content

Instantly share code, notes, and snippets.

@Dih5
Created September 7, 2019 18:16
Show Gist options
  • Save Dih5/b1d1a9302c1825e0ffe30d371a5643e0 to your computer and use it in GitHub Desktop.
Save Dih5/b1d1a9302c1825e0ffe30d371a5643e0 to your computer and use it in GitHub Desktop.
Convert all pdfs to png with
#!/bin/bash
for f in *.pdf ; do
convert -verbose -density 300 "${f}" "${f%.*}".png
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment