Skip to content

Instantly share code, notes, and snippets.

@waywardone
Created June 12, 2021 05:31
Show Gist options
  • Save waywardone/37d4980e8ee32dabc1dc82893e2e4420 to your computer and use it in GitHub Desktop.
Save waywardone/37d4980e8ee32dabc1dc82893e2e4420 to your computer and use it in GitHub Desktop.
Convert HEIC to JPG. Tested in zsh
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