blog.briangallimore.com
Batch Resize Pictures Using Linux Convert Utility
A quick and simple way to resize a folder full of pictures is to issue the following command on a Linux computer: $ for file in *.jpg; do convert $file -resize 25% rz-$file; done