Help for this page

Select Code to Download


  1. or download this
    require $pathtool;
    
  2. or download this
    require "File::Path";
    
  3. or download this
    eval "require $pathtool";
    
  4. or download this
    require File::Path;
    
  5. or download this
    sub require_package {
        for (@_) {
    ...
            require "$file.pm";
        };
    };