![]() |
|
more useful options | |
PerlMonks |
How do I add the directory my program lives in to the module/library search path?by faq_monk (Initiate) |
on Oct 08, 1999 at 00:29 UTC ( [id://753]=perlfaq nodetype: print w/replies, xml ) | Need Help?? |
Current Perl documentation can be found at perldoc.perl.org. Here is our local, out-dated (pre-5.6) version:
use FindBin; use lib "$FindBin::Bin"; use your_own_modules;
|
|