#!/bin/sh echo Content-type: text/plain echo echo CGI/1.0 test script report: echo argc is $#. argv is "$*". echo ----Variables-------- set if [ x"$REQUEST_METHOD" = xPOST ] then QUERY_STRING=`/u/faculty/dick/bin/unpost $CONTENT_LENGTH` fi QUERY_STRING=`echo "$QUERY_STRING"|/u/faculty/dick/bin/urlunencode` echo ------Content------- echo "$QUERY_STRING" echo ---------------------