Skip to content

Instantly share code, notes, and snippets.

@topaztee
Created July 31, 2020 04:55
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 topaztee/a02161617a0ef70df6f22060a3db61ed to your computer and use it in GitHub Desktop.
Save topaztee/a02161617a0ef70df6f22060a3db61ed to your computer and use it in GitHub Desktop.
iphone live photos are .heic formats which most sites dont accept. This script converts .heic files to jpg
ls -1 *.heic | xargs -n 1 bash -c 'convert "$0" "${0%.*}.jpg"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment