Skip to content

Instantly share code, notes, and snippets.

@kyktommy
Created July 6, 2020 02:51
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 kyktommy/0c98f76c91b3099be5001f9d0b21f495 to your computer and use it in GitHub Desktop.
Save kyktommy/0c98f76c91b3099be5001f9d0b21f495 to your computer and use it in GitHub Desktop.
sips bulk resize png to jpg
# png to jpg with width 100
for i in *.png; do sips -s format jpeg -s formatOptions 90 -Z 100 $i --out "${i%png}jpg";done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment