Advertisement
Advertisement
| 02.14.2008 at 06:53PM PST, ID: 23165039 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: |
#!/usr/bin/perl
print "Content-type:text/html\n\n";
print <<EndOfHTML;
<html>
<head>
<title>Print Environment
</title>
</head>
<body>
EndOfHTML
foreach $key (sort(keys %ENV))
{
print "$key = $ENV{$key}<br>\n";
}
print "
</body>
</html>";
|