Skip to content

Instantly share code, notes, and snippets.

@vutkin
Forked from ccnokes/heic_to_jpeg.sh
Created November 21, 2022 16:06
Show Gist options
  • Save vutkin/ef30c3772679451bc1b4833a5914328a to your computer and use it in GitHub Desktop.
Save vutkin/ef30c3772679451bc1b4833a5914328a to your computer and use it in GitHub Desktop.
Bash script that converts .HEIC to .jpg files
#!/bin/bash
set -eu -o pipefail
count=$(find . -depth 1 -name "*.HEIC" | wc -l | sed 's/[[:space:]]*//')
echo "converting $count files .HEIC files to .jpg"
magick mogrify -monitor -format jpg *.HEIC
echo "Remove .HEIC files? [y/n]"
read remove
if [[ "$remove" == "y" ]]; then
find . -depth 1 -name "*.HEIC" -delete
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment