#!/bin/sh

DATE=/bin/date

# Must print out Content-type line, followed by at least one blank line,
# to have a well-formed header.
echo "Content-type: text/plain\n\n"

if [ -x $DATE ];  then
        $DATE
else 
        echo "Cannot find date command on this system."
fi
exit 0
