- or download this
$ cat ~/tmp/pm_11124087/lib/XYZ.pm
package XYZ;
1;
- or download this
$ cat ~/tmp/pm_11124087/test_lib.pl
#!/usr/bin/env perl
...
use lib 'lib';
use XYZ;
- or download this
$ ./test_lib.pl
$
- or download this
$ cd ..
$ pm_11124087/test_lib.pl
Can't locate XYZ.pm in @INC (you may need to install the XYZ module) (
+@INC contains: lib /home/ken/...
- or download this
$ cat ~/tmp/pm_11124087/test_lib.pl
#!/usr/bin/env perl
...
use lib "$FindBin::Bin/lib";
use XYZ;
- or download this
$ ./test_lib.pl
$ cd ..
$ pm_11124087/test_lib.pl
$