12 lines
344 B
Bash
Executable file
12 lines
344 B
Bash
Executable file
#!/bin/bash
|
|
# HEIC zu JPG konvertieren, auf max. 1920px verkleinern, HEIC löschen
|
|
|
|
for file in *.{heic,HEIC}; do
|
|
if [[ -f "$file" ]]; then
|
|
output="${file%.*}.jpg"
|
|
heif-convert -q 90 "$file" "$output" && rm "$file"
|
|
if [[ -f "$output" ]]; then
|
|
mogrify -resize 1920x1920\> "$output"
|
|
fi
|
|
fi
|
|
done
|