Batch Resize Images with ImageMagick
Tagged with: convert, image, imagemagick, resize
Batch resize files in the current directory and send them to a thumbnails directory (requires convert from Imagemagick)
find . -maxdepth 1 -name *.jpg -print -exec convert "{}" -resize 80x60 "thumbs/{}" \;
Follow me(@binnyva) on Twitter