/home/a/aquarion/sites/www.aquarionics.com/epistula/contrib/thumbnail
All my code (That is, anything not in the "Others" list on the right) is BSD licenced.
You can also view this page as text/plain or colour-coded source
#!/bin/bash
for file in *.JPG
do
echo $file;
convert -geometry 100x100 "$file" "${file%.jpg}.thumb.jpg"
convert -geometry 800x800 "$file" "$file"
done
Using a heavily customised version of Tom's PHPCode2ValidXHTML Thing