Re: install question..
Nicholas Orlans (norlans@mitre.org)
Tue, 06 Jan 1998 13:33:15 -0500
For pre 5.004 you could wrap your [cgi] perl script with a shell script to
set the PERLLIB environment to include your directory ... something like this:
#!/bin/sh
PERLLIB=${PERLLIB}:/path/to/my/modules; export PERLLIB
#
# Now run your perl script
#
/full/path/to/script.pl $1
Thanks to changes in the dynaloader, with post 5.004, you can simply say:
#!/bin/perl
use lib '/path/to/my/modules';
-nick
At 10:57 AM 1/6/98 -0500, dbreite2@ic3.ithaca.edu wrote:
>I'm a user on unix web server and I have permision to read perl modules,
>and any other perl files. However I don't have permision to wright to the
>@INC directories. Is it possible to use libwww-perl-5 ( I do have perl
>5.003) without installing it in the @INC directories..
>
>
>Thanks
>
>denny
>dbreite2@ic3.ithaca.edu
>
>
>
>
>
>
>