
#!/bin/bash
# File	: convert_heic_to_jpg.sh
# By	: MaartenDeBoer.nl, 260622
# Subject	: Script to convert .heic naar .jpg (Created by ChatGPT)


for f in *.HEIC *.heic; do
    [ -e "$f" ] || continue
    outfile="${f%.*}.jpg"
    echo "Converteer $f -> $outfile"
    heif-convert "$f" "$outfile"
done



exit 0

