Help for this page

Select Code to Download


  1. or download this
    use lib "$ENV{HOME}/public_html/PERL_TEST";
  2. or download this
    BEGIN
    {
            my $home = (getpwuid($<))[7];   # Current user
    
            use lib "$home/public_html/PERL_TEST";
    }
    
  3. or download this
    BEGIN
    {
            my $user = 'someuser';
    ...
    
            print $home;
    }