Help for this page

Select Code to Download


  1. or download this
    require '/path/to/some/script.pl';
    
  2. or download this
    use lib '/path/to/some';
    require 'script.pl';
    
  3. or download this
    package module;
    
    ...
    warn 'module INC: ', $INC{'required1.pl'};
    
    __PACKAGE__
    
  4. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    subroutine();
    
    1;
    
  5. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    warn 'script INC ', $INC{'required1.pl'};
    
    subroutine();
    
  6. or download this
    my %_INC = %INC;
    
    # ...
    
    %INC = %_INC;