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.
18 lines
305 B
18 lines
305 B
#!/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);
|
|
|