#!/bin/bash # showCGIenv--Displays the CGI runtime environment, as given to any # CGI script on this system. echo "Content-type: text/html" echo "" # Now the real information... echo "

CGI Runtime Environment

" echo "
"
env || printenv
echo "
" echo "

Input stream is:

" echo "
"
cat -
echo "(end of input stream)
" exit 0