in reply to Local library for module test script
Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
see FindBin, it's core.
use FindBin qw($Bin); use lib "$Bin";
or
use FindBin qw($Bin); require $Bin.'/lib.pm';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Local library for module test script
by Anonymous Monk on Dec 03, 2014 at 03:59 UTC | |
by LanX (Saint) on Dec 03, 2014 at 04:20 UTC |