Created
December 7, 2018 08:56
-
-
Save SubZane/0797b69426e5b4f5d43bc17f9d1dd7d1 to your computer and use it in GitHub Desktop.
Convert PNG to JPG
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in *.png; do sips -s format jpeg -s formatOptions 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