Skip to content

Instantly share code, notes, and snippets.

@dpanic
Created May 23, 2022 06:52
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 dpanic/46e63a30b7a16bda78727931b25d9b68 to your computer and use it in GitHub Desktop.
Save dpanic/46e63a30b7a16bda78727931b25d9b68 to your computer and use it in GitHub Desktop.
heic to jpg
#!/usr/bin/env bash
for f in *.heic; do
out=$(echo $f | sed -e s/\.heic/\.jpg/g)
heif-convert -q 92 $f $out
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment