On Tue, Jul 31, 2001 at 05:34:01PM -0400, Brett W. McCoy wrote:
: On Tue, 31 Jul 2001, Ryan Davis/Pamela Karr wrote:
: 
: > How can I change my @INC variable?  Can I just:
: >
: > @INC = (@INC, "/home/me/libs/");
: >
: > It seems like I would need to change it before my perl program starts...
: > Also, if I put a .pm file in one of the @INC dirs, will I be able to:
: >
: > use module;
: >
: > even if it is not in the main system perl libs?
: 
: The usual thing to do is:
: 
: use lib '/home/me/libs';
: 
: use YourModule.pm;

Most likley you mean:

  use YourModule;

but, still good info.

  Casey West

-- 
Shooting yourself in the foot with Lisp 
You shoot yourself in the appendage which holds the gun with which you
shoot yourself in the appendage which holds the gun with which you
shoot yourself in the appendage which holds... 

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to