#!/bin/bash

# creates thumbnails page and emails stuff to do web page

perl ../thumbnail-page.pl > thumbnails.html
~/bin/wwwis thumbnails.html
rm -f thumbnails.html~

perl ../webpage.pl > w.html
~/bin/wwwis w.html
cat w.html | mail pjensen@georgiatech-metz.fr
rm -f w.html w.html~


