#!/bin/sh
#
# Stupidly simple shell script.  
#

#
# usage: > makethumbnail.sh original 
# outputs th_original.<imageformat>i, basically a smaller 
# version of the original.  

convert -geometry 200x200 -quality 60 $1 th_$1
