uucp_site/cgi-bin/index.pl

23 lines
262 B
Perl
Executable File

#!/usr/local/bin/perl -w
#
use strict;
use warnings;
my $html = qq{Content-Type: text/html
<html>
<head>
<title>Dataforge UUCP</title>
</head>
<body>
<center>
<h1>
Stay tuned...
</h1>
</center>
</body>
</html>
};
print $html;;