Skip to content

Instantly share code, notes, and snippets.

@karl-gustav
Created October 24, 2021 14:13
Show Gist options
  • Save karl-gustav/738d93213f5eae78f3abda0a55ba3eb1 to your computer and use it in GitHub Desktop.
Save karl-gustav/738d93213f5eae78f3abda0a55ba3eb1 to your computer and use it in GitHub Desktop.
Convert heic --> jpg on a mac
for file in *.heic; do sips -s format jpeg "$file" --out "${file%.heic}.jpg" && rm -f "$file"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment