You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
305 B
19 lines
305 B
8 years ago
|
#!/usr/bin/perl
|
||
|
#
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
use AN::Tools;
|
||
|
|
||
|
my $an = AN::Tools->new();
|
||
|
|
||
|
my $THIS_FILE = "home";
|
||
|
|
||
|
# Turn off buffering so that the pinwheel will display while waiting for the SSH call(s) to complete.
|
||
|
$| = 1;
|
||
|
|
||
|
print "Content-type: text/html; charset=utf-8\n\n";
|
||
|
print "hello.\n";
|
||
|
|
||
|
|
||
|
exit(0);
|