e8efe63674f06fa2ef3ba29922a0f5353b900913
[metaproxy-moved-to-github.git] / cgi.sh
1 #!/bin/bash
2 echo "Content-Type: text/plain"
3 echo ""
4 echo "metaproxy/etc/cgi.sh"
5 pwd
6 env
7 if test $CONTENT_LENGTH; then
8         echo "Echo content of length: $CONTENT_LENGTH:"
9         read -n $CONTENT_LENGTH c
10         echo "$c"
11 fi
12
13