Skip to content

Instantly share code, notes, and snippets.

@fredguth
Created September 30, 2022 13:46
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 fredguth/a34c1b2924d3364787419b3b2f284e3c to your computer and use it in GitHub Desktop.
Save fredguth/a34c1b2924d3364787419b3b2f284e3c to your computer and use it in GitHub Desktop.
batch transform pdfs to pngs in mac osx
for file in *.pdf; do sips -s format png "$file" --out "${file%.pdf}.png"; done ▼ at 10:43:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment