#!/bin/ksh

echo "Content-type: text/html"
echo
read input junk
echo $input >o
chmod 0666 o
echo "CGI test script"
echo
echo "<HTML>"
echo
echo
input= " `echo $input |sed 's/&/ /g'` "
echo  " $input "
echo
echo "</HTML>"

