Created
May 30, 2023 03:15
-
-
Save rileyjshaw/92eefdc41c6546b50aa5ee1c552f3022 to your computer and use it in GitHub Desktop.
Adding this to remind myself that the `mogrify` command exists
This file contains 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
# heic-convert() { | |
# local ext | |
# ext="${1:-jpg}" | |
# for img in *.heic; do | |
# convert "$img" "${img%.heic}.$ext" | |
# done | |
# } | |
# Instead of ^this^, do this: | |
mogrify -format jpg *.heic |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment