#!/bin/sh
if [ ! -n "$QUERY_STRING" ]
then
echo Content-type: text/html
echo
echo '
Java Validator
'
echo ""
echo "Enter b.html for filename"
else
echo Content-type: text/html
echo
java Validator `echo $QUERY_STRING | cut -f2 -d "=" | cut -f1 -d "&"`
fi