Hi I'm beginner for perl.
Do you now How to list local installed CPAN modules? like pear list in PHP.
|
1
|
|
|
|
|
|
Try |
||
|
|
|
|
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 -
OR
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
to just,
The script can be found here. |
||
|
|
|
|
The answer can be found in the Perl FAQ list. You should skim the excellent documentation that comes with Perl
|
||
|
|