#!/bin/csh # # My first cgi program to print the current date/time and calendar # (This is not a Perl program) # echo "Content-type: text/html" echo "" echo "" echo "" echo "

" date # execute the UNIX date command echo "

" echo "

" echo "

"
cal                                    # execute the UNIX calendar command
echo "

"