You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env perl
|
|
|
|
my $status = 200;
|
|
|
|
if (defined $ENV{"QUERY_STRING"}) {
|
|
$status = $ENV{"QUERY_STRING"};
|
|
}
|
|
|
|
print "HTTP/1.0 ".$status." FooBar\r\n";
|
|
print "\r\n";
|