Re: How to : Configuration / reuse of package in a different directory

2003-06-04 Thread T.S. Ravi Shankar
Hi Wang : Try this : sub BEGIN { push @INC, "mysandbox/blah"; # you can include any path here } use myPackage.pm / Ravi Wenjie Wang wrote: > Greetins, > > I'm try to use another perl module of mine in a different perl file in > different directory. I would like to know how to use

How to : Configuration / reuse of package in a different directory

2003-06-04 Thread Wenjie Wang
Greetins, I'm try to use another perl module of mine in a different perl file in different directory. I would like to know how to use the package in my code. For example, I've got a module in directory: mysandbox\blah\myPackage.pm I'm going to use it from another directory: mysan