Created
May 27, 2025 17:36
-
-
Save jonathas/2ac3e04c31fa462d6d9b2f7ccdf80288 to your computer and use it in GitHub Desktop.
Convert list of heic files to jpg on MacOS
This file contains hidden or 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
| #!/bin/bash | |
| for f in *.heic; do | |
| sips -Z 2000 -s format jpeg -s formatOptions 75 "$f" --out "${f%.*}.jpg" | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment