Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
htdocs
/
modules
/
cgi
/
env.pl.PL
blob: f776cab522f6f5086e255e3097a59e133843e772 [
file
]
use
strict
;
print
"Content-type: text/plain\n\n"
;
for
(
sort keys
%
ENV
)
{
print
"$_ = $ENV{$_}\n"
;
}