#!/bin/sh # An example CGI program outputing the current date echo Content-Type: text/html echo Status: 200 OK echo echo "<h2> This is the cgi script. </h2>" echo "<br> Current date: " echo `date` echo