in reply to Re: Using a paramter value to call a module
in thread Using a paramter value to call a module
If this is a library of your own modules, you might be better off using an environment variable such as PERLLIB or PERL5LIB to locate these rather than embedding the path in all your programs.Nope, because even though you might be setting that variable, there's no guarantee that someone else running your program has that same variable set. But if you use lib, then everyone wins.
use lib is generally preferred to an environment variable for this reason.
-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Using a paramter value to call a module
by Brutha (Friar) on Feb 07, 2003 at 09:44 UTC | |
|
Re: •Re: Re: Using a paramter value to call a module
by Ryszard (Priest) on Feb 07, 2003 at 09:40 UTC | |
by Brutha (Friar) on Feb 07, 2003 at 09:51 UTC | |
by Ryszard (Priest) on Feb 07, 2003 at 10:07 UTC |