mirror of
https://github.com/apache/httpd.git
synced 2025-09-04 00:22:05 +03:00
Obtained from: Apache 1.3.9 (minus unused files), tag APACHE_1_3_9 Submitted by: Apache Group git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83748 13f79535-47bb-0310-9956-ffa450edef68
8 lines
126 B
Perl
8 lines
126 B
Perl
#!/usr/local/bin/perl
|
|
|
|
print "Content-type: text/html\n\n";
|
|
while (($key, $val) = each %ENV) {
|
|
print "$key = $val<BR>\n";
|
|
}
|
|
|