Skip to content

Instantly share code, notes, and snippets.

@miry
Created August 8, 2024 06:37
Show Gist options
  • Save miry/3b16c7c47ce36b99a16413ff6b69d27e to your computer and use it in GitHub Desktop.
Save miry/3b16c7c47ce36b99a16413ff6b69d27e to your computer and use it in GitHub Desktop.
Convert HEIC to JPG in folder
for i in *.HEIC ; do heif-convert "$i" "${i%.*}.jpg" ; mv "$i" "$i.bak" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment