sv.pl
27 lines of code
1
#!/usr/local/bin/perl
2
3
binmode(STDIN, ":utf8");
4
binmode(STDOUT, ":utf8");
5
6
# must have's!
7
use strict;
8
use warnings;
9
use CGI::Carp qw(fatalsToBrowser);
10
use DBI;
11
use URI::Escape;
12
13
my $DEBUG = 0;
14
15
my $output;
16
17
############################################################
18
19
### YOUR CONTENT HERE
20
$output = "content-type: text/plain\n\n";
21
$output .= $ENV{SERVER_SOFTWARE};
22
23
############################################################
24
25
print $output;
26
27
exit 1;