John W. Krahn wrote:
Muthukumar wrote:

Hi,


Hello,

How to find out the modules included in perl?


perldoc perlmodlib
perldoc perltoc


perl -le'
use File::Find;
find sub { $mods{ $File::Find::name } = () if /\.pm$/ }, grep !/^\.$/, @INC;
print for sort map {
    my $key = $_; map {
        $key =~ s!^\Q$_\E/!! ? $key : ()
    } sort { $b cmp $a } @INC
} keys %mods
'



John

also see Module::CoreList on CPAN


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to