Skip to content

Instantly share code, notes, and snippets.

@mwender
Created August 15, 2024 20:02
Show Gist options
  • Save mwender/232ac3dd63e3e3655dd4290238c3260e to your computer and use it in GitHub Desktop.
Save mwender/232ac3dd63e3e3655dd4290238c3260e to your computer and use it in GitHub Desktop.
[Convert .heic to .jpg] MacOS one-liner for converting all .heic files in current directory to .jpg #bash #imageprocessing
for f in *.heic; do sips -s format jpeg -s formatOptions 40 "$f" --out "${f%.heic}.jpg"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment