1

Ресайз всех изображений в директории

$ for a in `ls`; do echo $a && convert $a -resize <Width>x<Height> $a; done
-----------