Re: question regarding how to launch perl script on remote machine
[email protected] ("Chas. Owens")
| Newsgroups | perl.beginners |
|---|---|
| Message-ID | <[email protected]> |
On Sun, May 18, 2008 at 11:22 PM, Richard Lee <[email protected]> wrote: > so just to put it out there for my ideas to run more perl scripts at work > using modules that I cannot install(whether due to lack of knoweldge or just > don't have > the right).. snip So long as you have write access to a directory you can install Perl modules. You just need to say perl Makefile.PL PREFIX=/path/to/dir if you install by hand or setup your CPAN configuration correctly if you use CPAN. You will also want to either use the lib* pragma or set the PERL5LIB environmental variable to point to the directory where you are installing the modules. * See perldoc lib or http://perldoc.perl.org/lib.html -- Chas. Owens wonkden.net The most important skill a programmer can have is the ability to read.