Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
($package, $filename, $line) = caller;
($package, $filename, $line, $subroutine, $hasargs, $wantargs) = caller(n);
/u/web/userid/cgi-local/test.pl
if ( $0 =~ /^(.*)\/([^\/]+)$/ ) {
$CurrentDirectory = $1;
$CurrentProgram = $2;
} elsif ( $ENV{'SCRIPT_FILENAME'} =~ /^(.*)\/([^\/]+)$/ ) {
$CurrentDirectory = $1;
$CurrentProgram = $2;
} else {
$CurrentDirectory = '.';
$CurrentProgram = '(unknown)';
}