Help for this page

Select Code to Download


  1. or download this
    use Cwd;
    my $cwd = cwd();
    ...
        chdir "$cwd/$dir";
        print `perl Makefile.PL && make && make test && make install`;
    }
    
  2. or download this
    sub check_modules {
        my @mod_list = @_;
    ...
            print `$cmd`;
        }
    }