#!/bin/sh
List=`ls -1dtF *`
echo "
This page is automatically generated at `date` in anti-chronological (most recent at the top) order by the update.sh script
"
echo ""
for p in $List
do
echo "- $p
"
done
echo "
"
echo "
Accessed:
times since 21 JAN 2000."
echo "Send any comments to me at tigran@ocston.org
"
.