in reply to How to Add path to @INC
use lib qw(.); # Will add your cwd to @INC use lib qw(. /path/to/my/home /some/other/dir); # will add those dirs +to @INC [download]
perl -I/path/to/include script [download]
Cheers, KM