Re: How to find out what are modules included in perl

2005-07-06 Thread Scott R. Godin
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 {

RE: How to find out what are modules included in perl

2005-07-06 Thread Jason Sullivan
---Original Message- From: Bob Showalter [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 06, 2005 8:52 AM To: 'Muthukumar'; beginners@perl.org Subject: RE: How to find out what are modules included in perl Muthukumar wrote: > Hi, > > How to find out the modules included in

Re: How to find out what are modules included in perl

2005-07-06 Thread Xavier Noria
On Jul 6, 2005, at 13:48, Muthukumar wrote: How to find out the modules included in perl? That depends on the version. For example the list in perl 5.6.1 is different from the one in 5.8.7. The standard modules in each core Perl distribution are listed in the corresponding perlmodlib pag

RE: How to find out what are modules included in perl

2005-07-06 Thread Bob Showalter
Muthukumar wrote: > Hi, > > How to find out the modules included in perl? To show the "core" modules included with a given Perl version: perldoc perlmodlib To show locally installed additional modules: perldoc perllocal -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

Re: How to find out what are modules included in perl

2005-07-06 Thread John W. Krahn
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/!! ?