Batch re-size a collection of images from the command line
1 2 for img in $(ls *.png); do convert $img -resize 75% smaller-$img; done;
DZone Snippets > 27stars > batch
13391 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
27stars http://www.27stars.co.uk
1 2 for img in $(ls *.png); do convert $img -resize 75% smaller-$img; done;