summaryrefslogtreecommitdiff
path: root/envtest.pl
blob: 4cd5e8d1c466e27570be42c4b322c5986b72d041 (plain)
1
2
3
4
5
6
#!/usr/bin/perl
print "Content-Type: text/plain\n\n";
foreach (sort keys %ENV) {
	print "$_: $ENV{$_}\n";
}
1;