7 lines
106 B
Perl
7 lines
106 B
Perl
use strict;
|
|
|
|
print "Content-type: text/plain\n\n";
|
|
|
|
for (sort keys %ENV) {
|
|
print "$_ = $ENV{$_}\n";
|
|
}
|