in reply to Re^2: Packaging Libraries before deploying my Scripts.
in thread Packaging Libraries before deploying my Scripts.
Yep. If you have some libs you made like:
You only need to say:/home/fred/perl/lib/ModuleName.pm /home/fred/perl/lib/ModuleName/Extend.pm /home/fred/perl/lib/OtherModule.pm
use lib '/home/fred/perl/lib'; use ModuleName::Extend; use OtherModule;
|
|---|