#!/bin/sh
#
# CGI script that prints the date and time at which it was run
#
# Output the document header followed by a blank line

echo Content-type: text/plain
echo

# Output the date

echo
echo
echo
echo
echo
echo Welcome to WWW.CS.CSUSTAN.EDU!
echo
echo The local date and time is:
echo
echo `date`

