cazette/misc/script/resize-illustrations.sh

10 lines
226 B
Bash
Raw Normal View History

2025-01-17 11:28:15 +01:00
#!/bin/bash
FILES=$(find illustrations -maxdepth 2 -name '*.jpg' -printf '%p ')
for f in $FILES; do
small_dir=$(dirname $f)/small
mkdir -p "$small_dir"
magick convert -resize 75% "$f" "$small_dir/$(basename $f)"
done