#!/usr/bin/sh

echo "Content-type: text/html"
echo ""


echo "<html>"
echo "<body>"
echo "<center><h1>Hello this is a test </h1></center>" 
/usr/local/etc/httpd/cgi-bin/can
echo you are the 
echo "<font size=5 color=green>"
cat /usr/local/etc/httpd/cgi-bin/1.txt
echo "</font>"
echo th person
read thename
echo "</h1>"
<center><h1>echo $1</h1></center>
if [ $# = 0 ]
then echo "<blink>There is no passed parameter</blink>"
else
  if [ $1 = "m" ]
     then echo "ITS A MALE"
  else
     echo "ITS A FEMALE"
fi
fi
echo "</body>"
echo "</html>" 
