#!/bin/csh 
## a CGI csh script
file = /usr/local/WWW/tmp/new.address
echo "Content-type: text/html"; echo ""
echo "<TITLE>Information Received</TITLE>"
     /bin/date >> $file
     echo >> $file
     /bin/cat  >> $file
     echo >> $file
echo "<H1>Your information will be processed shortly<H1>"
echo "<H2>Thank you</H2>"
