Monday, July 23, 2007

imagemagick Script

Save this as a .sh file then run with bash to create a crapload of thumbnails out of your photos.

for file in *.jpg
do
convert -resize 400 "$file" thumb_"$file"
done


Fanks!