ImageMagick: Resize a batch of images using convert and the find command

 
# using a regular expression to find images such as "image01_abc.png", "image02_def.png", ...
find * -regextype "egrep" \
       -iregex 'image[0-9][0-9].*' \
       -exec convert {} -resize 70% "resize_{}" \;

 

Related Snippets

•  ImageMagick: Join images as a pdf file
•  ImageMagick: Convert and compress a list of png files to jpg
•  ImageMagick: Resize a batch of images using convert and a for loop
•  ImageMagick: Rotate a batch of images using convert and the find command
•  ImageMagick: Rotate a batch of images using convert and a for loop