in reply to Re^3: Regex Question
in thread Regex Question

It's a friend's web server and he doesn't have that kid of clout.

Replies are listed 'Best First'.
Re^5: Regex Question
by ikegami (Patriarch) on Jan 04, 2009 at 06:49 UTC

    You don't need clout. If you can install a script, you can install a module. Just install it locally using:

    perl Makefile.PL PREFIX=~ LIB=~/lib/perl5 make make test make install

    And either add the following in your script:

    use lib "$ENV{HOME}/lib/perl5/";

    or add the following to your login script (.bash_profile):

    export PERL5LIB=~/lib/perl5

    No special permissions needed.

    A reply falls below the community's threshold of quality. You may see it by logging in.