Skip to content

Instantly share code, notes, and snippets.

@maxpeterson
Created October 17, 2019 08:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxpeterson/5b02aa84f376f4ece565eadf019ead7c to your computer and use it in GitHub Desktop.
Save maxpeterson/5b02aa84f376f4ece565eadf019ead7c to your computer and use it in GitHub Desktop.
Convert PNGs to PDFs
#!/usr/local/bin/bash
for filename in *.png; do
convert "$filename" "${filename%.*}.pdf";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment