#!/bin/sh # An example CGI program outputing the current date echo content-type: text/html echo status: 200 OK echo echo "" echo "

This is the cgi script.

" echo "
Current date: " echo `date` echo ""