Created
June 12, 2021 05:31
-
-
Save waywardone/37d4980e8ee32dabc1dc82893e2e4420 to your computer and use it in GitHub Desktop.
Convert HEIC to JPG. Tested in zsh
This file contains hidden or 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 f in *.HEIC; do echo ${f:t:r}; tifig -v -q 100 -i "$f" -o "${f:t:r}.JPG"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment