February 2008
1 post
thumbnail a directory of images
imagemagick required.
for file in *.jpg; do
thumb=`echo $file | sed s/.jpg//g`_s.jpg;
cp $file $thumb;
mogrify -thumbnail 900x100 $thumb;
done;