summaryrefslogtreecommitdiff
path: root/envtest.pl
diff options
context:
space:
mode:
Diffstat (limited to 'envtest.pl')
-rwxr-xr-xenvtest.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/envtest.pl b/envtest.pl
new file mode 100755
index 0000000..4cd5e8d
--- /dev/null
+++ b/envtest.pl
@@ -0,0 +1,6 @@
+#!/usr/bin/perl
+print "Content-Type: text/plain\n\n";
+foreach (sort keys %ENV) {
+ print "$_: $ENV{$_}\n";
+}
+1;