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

Then you have a broken Perl. It comes with Perl (No, only with ActivePerl)

What problems are you having while trying to install it?

Replies are listed 'Best First'.
Re^4: Regex Question
by Anonymous Monk on Jan 04, 2009 at 06:42 UTC
    I checked the Perl Core Modules and didn't see it in there. Where else do I check to see if it's a core module or am I totally off base?
      Sorry, I realized my mistake as soon as I said it. What problems are you having while trying to install it?
Re^4: Regex Question
by Anonymous Monk on Jan 04, 2009 at 06:43 UTC
    It's a friend's web server and he doesn't have that kid of clout.

      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.