Skip to content

Instantly share code, notes, and snippets.

@Y4suyuki
Created February 4, 2013 18:16
Show Gist options
  • Save Y4suyuki/4708471 to your computer and use it in GitHub Desktop.
Save Y4suyuki/4708471 to your computer and use it in GitHub Desktop.
convert all pngs to pdfs on Mac OS X
#!/bin/sh
for png in *.png; do
sips -s format pdf "$png" --out "${png%%.*}.pdf"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment