Created
August 8, 2024 06:37
-
-
Save miry/3b16c7c47ce36b99a16413ff6b69d27e to your computer and use it in GitHub Desktop.
Convert HEIC to JPG in folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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