Skip to content

Instantly share code, notes, and snippets.

@miry
Created August 8, 2024 06:37
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