 #!/bin/sh
 #
 ## -------- convert  ---------
 
 ls * | grep .jpg | while read f
  do
    if [ -f $f ]; then
	convert -size 90x62  $f thumb_$f
    fi
  done

 ## eof

