#!/bin/bash
URL="http://downloads.tuxfamily.org/nutyx/WallPapers"
for i in *.png *.jpg
do
if [ ! -f thumbnails/$i ]; then
	echo "<a href=$URL/$i> <img src=$URL/thumbnails/$i></a>"
	convert $i -resize 200 thumbnails/$i
fi
done
