#!/bin/sh echo Content-type: text/html echo echo "CGI Envionment Variables" echo "
"
set
echo
pwd
if [ "$1" = "" ] ; then
	echo ${QUERY_STRING} | ./getparam text
else
	echo $1
fi
/bin/date
echo "
"