Skip to content

Instantly share code, notes, and snippets.

@docPhil99
Last active July 31, 2021 11:27
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 docPhil99/e53d36320b0f1017b10487d45c8a1434 to your computer and use it in GitHub Desktop.
Save docPhil99/e53d36320b0f1017b10487d45c8a1434 to your computer and use it in GitHub Desktop.
Batch convert heic files to jpg in fish shell

Batch convert heic files to jpg in fish shell

  • First install sudo apt install libheif-examples
  • Then run in correct directory for p in *.heic; heif-convert $p (basename $p .heic)".jpg"; end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment