her.esy.fun/reduce-images.sh

9 lines
175 B
Bash
Raw Normal View History

2019-08-17 21:46:10 +00:00
#!/usr/bin/env zsh
for fic in src/**/*.{jpg,png,gif}(N.); do
tmp="temp.${fic:e}"
echo "$fic"
cp $fic $tmp
convert $tmp -resize 800x800\> $fic
rm $tmp
done