Batch resize of images using ImageMagick Sep 8, 2013 • milesd Find any file which is a “jpg”, resize by 30%, and save in the resized directory: find . -maxdepth 1 -name "*.jpg" -exec convert {} -resize 30% resized/{} ;