Skip to content

Commit

Permalink
mark env as executable
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie Somerville committed Jun 9, 2012
1 parent f53f3b1 commit 1f07633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cgi-bin/env.cgi 100644 → 100755
Expand Up @@ -6,6 +6,6 @@ my $cgi = CGI->new;

print $cgi->header,
$cgi->start_html("Environment Variables"),
$cgi->h1("Environment Variables"),
$cgi->h1('%ENV'),
$cgi->table(map { $cgi->Tr($cgi->td($cgi->escapeHTML($_)), $cgi->td($cgi->escapeHTML($ENV{$_}))) } keys(%ENV)),
$cgi->end_html();

0 comments on commit 1f07633

Please sign in to comment.