#!/bin/sh # An example CGI program outputing the current date echo Content-Type: text/html echo Status: 200 OK echo echo "

This is the cgi script.

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