Skip to content

Instantly share code, notes, and snippets.

@jonathas
Created May 27, 2025 17:36
Show Gist options
  • Select an option

  • Save jonathas/2ac3e04c31fa462d6d9b2f7ccdf80288 to your computer and use it in GitHub Desktop.

Select an option

Save jonathas/2ac3e04c31fa462d6d9b2f7ccdf80288 to your computer and use it in GitHub Desktop.
Convert list of heic files to jpg on MacOS
#!/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