Created
March 4, 2019 19:36
-
-
Save RicardoGeek/948c3f1a2b2ea32751be039826859c64 to your computer and use it in GitHub Desktop.
Transfor heic to jpg
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
// 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