Skip to content

Instantly share code, notes, and snippets.

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 fabiosoft/e16cebdd4c8b072281c559a9f992063b to your computer and use it in GitHub Desktop.
Save fabiosoft/e16cebdd4c8b072281c559a9f992063b to your computer and use it in GitHub Desktop.
Batch convert HEIC (iPhone) photos to JPEG, preserving creation dates
for i in *.heic; do sips -s format jpeg -s formatOptions best "${i}" --out "${i%heic}jpg" && touch -r "${i}" "${i%heic}jpg"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment