Bash script: batch resize your photos
If you toke some photos by your camera, and want to post them to somewhere (for example, I want to post the photo of my Treo 650 because I'm going to sell it), you may need to batch resize your photos.
This bash script shows how to uses ImageMagick to batch resize your photos:
1 #!/bin/sh
2
3 for file in *.JPG; do
4 convert -resize 1024x768 $file ${file%.JPG}_resize.jpg
5 done