diff options
author | Jonas Kohl | 2024-09-05 21:40:11 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-09-05 21:40:11 +0200 |
commit | f0456f71198e7a31238c92cd2a8f23315bf3488b (patch) | |
tree | 7a240bb5891ba990e87d6f9d8e95c6aa11878246 | |
parent | 9673742315cff374a6c4e5cfbd51526ff3220770 (diff) |
Remove script
-rwxr-xr-x | cgi/printenv.pl | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cgi/printenv.pl b/cgi/printenv.pl deleted file mode 100755 index 9686c88..0000000 --- a/cgi/printenv.pl +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -print "Status: 403\r\n"; -print "Content-Type: text/plain\r\n\r\n"; - -# foreach my $var (sort(keys(%ENV))) { -# my $val = $ENV{$var}; -# $val =~ s|\n|\\n|g; -# $val =~ s|"|\\"|g; -# print "${var}=\"${val}\"\n"; -# } |