Skip to content

Instantly share code, notes, and snippets.

@maxpeterson
Created October 17, 2019 08:40
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