in reply to Loading sendmail module
There is a solution in the "Perl Cookbook":
# syntax for sh, bash, ksh, or zsh $ export PERL5LIB=$HOME/perllib # syntax for csh or tcsh % setenv PERL5LIB ~/perllib
Or a solution in "Learning Perl Objects, References & Modules", which is to start your script by:
BEGIN {shift @INC, "/home/perlib";}where perlib is always the directory that contains Mail/Sendmail.pm
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Loading sendmail module
by Anonymous Monk on Jan 29, 2004 at 17:32 UTC | |
by jey (Pilgrim) on Jan 29, 2004 at 18:08 UTC | |
by Anonymous Monk on Jan 29, 2004 at 18:46 UTC |