Skip to content

Instantly share code, notes, and snippets.

@RicardoGeek
Created March 4, 2019 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RicardoGeek/948c3f1a2b2ea32751be039826859c64 to your computer and use it in GitHub Desktop.
Save RicardoGeek/948c3f1a2b2ea32751be039826859c64 to your computer and use it in GitHub Desktop.
Transfor heic to jpg
// STEP 1: Download the latest tifig https://github.com/monostream/tifig/releases
// STEP 2: send the binary to /usr/bin
// STEP 3: sudo chmod a+x /usr/bin/tifig
//STEP 4:
for file in *.heic; do echo $file | xargs tifig -v -p $file ${file%.heic}.jpg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment