Help for this page

Select Code to Download


  1. or download this
    use CGI;
    use Cwd;
    
    my $currentdir = getcwd;
    print "Current dir is: $currentdir \n";
    
  2. or download this
    use FindBin;
    print "\nBinary is: $FindBin::Bin \n";