On 10/23/07, Sayed, Irfan (Irfan) <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> How to refer Perl module in Perl script which is not there in the @INC
> path. I don't have permission to add this module in the @INC path
>
> I need to use the SendMail.pm module , but that is not there in the
> default @INC path.
>
> Can I refer the path of this module in my actual Perl script?? If yes
> how to do that
>

Yes. First find the lib's path in your system,then `use lib` it.

use lib qw(/my/lib/path);

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to