#!/usr/bin/sh
echo "<html>"
echo "<body bgcolor=black text=green>"
echo "Some information: <br>"
echo "<hl> <br>"
echo "Local time: `date` <br>"
echo "UTC: `date -u` <br>"
echo "Working directory: `pwd` <br>"
echo "Servername is `hostname` <br>"
echo "MACHTYPE = $MACHTYPE <br>"
echo "USER     = $USER <br>"
echo "Server IP address is `hostname -i` <br>"
echo "</body>"
echo "</html>"
