vote up 0 vote down star
1

Hi I'm beginner for perl.

Do you now How to list local installed CPAN modules? like pear list in PHP.

flag

41% accept rate

4 Answers

vote up 1 vote down

Try man perllocal or perldoc perllocal.

link|flag
vote up 0 vote down

I wrote a perl script just yesterday to do exactly this. The script returns the list of perl modules installed in @INC using the '::' as the separator. Call the script using -

perl perlmod.pl

OR

perl perlmod.pl <module name> #Case-insensitive(eg. perl perlmod.pl ftp)

As of now the script skips the current directory('.') since I was having problems with recursing soft-links but you can include it by changing the grep function in line 17 from

  grep { $_ !~ '^\.$' } @INC

to just,

@INC

The script can be found here.

link|flag
vote up 2 vote down

The answer can be found in the Perl FAQ list.

You should skim the excellent documentation that comes with Perl

perldoc perltoc
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.