#!/bin/sh

List=`ls -1dtF *.patch`

echo "<h2>This page is automatically generated at `date` in anti-chronological (most recent at the top) order by the <a href=update.sh>update.sh</a> script</h2>"
echo "<ul>"
for p in $List
do
	echo "<li><a href="$p">$p</a></li>"	
done
echo "</ul>"
echo "<h3>Send any comments to me at tigran@veritas.com</h3>"

