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