Files
capsule/static/cgi-bin/debug

14 lines
265 B
Plaintext
Raw Normal View History

#!/bin/bash
if [ "$QUERY_STRING" = "" ]; then
echo -ne "10 Enter a query string\r\n"
exit 0
fi
echo -ne "20 text/plain\r\n"
echo -ne "SCRIPT_NAME: $SCRIPT_NAME\r\n"
echo -ne "PATH_INFO: $PATH_INFO\r\n"
echo -ne "QUERY_STRING: $QUERY_STRING\r\n"