Register now and start sharing your code snippets.
-->
Bulk resizing images with Imagemagick.
Shell Script (Bash) posted 5 months ago by marko
Quick and dirty, but handy one-liner that resizes all *.jpg files in the current directory.
1 for image in *.jpg; do convert $image -resize 800x600 800x600-$image; done
Tagged imagemagick, bulk resize