List Info

Thread: What modules




What modules
country flaguser name
United States
2007-09-21 11:28:21


I deal with quit a few servers all of which have several versions of
Perl on them so I know about the -v and -V options. But is there a
command or something to see what modules have been installed.
-----
Don Dukelow
HP License Management Team
Hewlett-Packard Company
Cell: 1-810-728-3388
e-mail: dukelow%40hp.com">dukelowhp.com
URL: http://www.hp.ca

__._,_.___
Recent Activity
Visit Your Group
Yahoo! Finance

It's Now Personal

Guides, news,

advice & more.

Ads on Yahoo!

Learn more now.

Reach customers

searching for you.

Yoga Groups

Find Enlightenment

& exchange insights

with other members

Re: What modules
country flaguser name
United States
2007-09-21 11:37:21

>>&gt;>> "Dukelow," == Dukelow, Don < dukelow%40hp.com">dukelowhp.com>; writes:

Dukelow,> I deal with quit a few servers all of which have several versions of
Dukelow,> Perl on them so I know about the -v and -V options. But is there a
Dukelow,> command or something to see what modules have been installed.

You need to learn about the Perl FAQ. You should be reading at least the
table of contents of the FAQ weekly until you know what's in there:

perldoc perlfaq

And you can search the faq with "perldoc -q". For example, "perldoc -q
installed" reveals:

Found in /usr/libdata/perl5/pod/perlfaq3.pod
How do I find which modules are installed on my system?
You can use the ExtUtils::Installed module to show all installed
distributions, although it can take awhile to do its magic. The standard
library which comes with Perl just shows up as "Perl" (although you can
get those with Module::CoreList).

use ExtUtils::Installed;

my $inst = ExtUtils::Installed->new();
my modules = $inst->modules();

If you want a list of all of the Perl module filenames, you can use
File::Find::Rule.

use File::Find::Rule;

my files = File::Find::Rule->;file()-&gt;name( '*.pm' )->in( INC );

If you do not have that module, you can do the same thing with
File::Find which is part of the standard library.

use File::Find;
my files;

find(
sub {
push files, $File::Find::name
if -f $File::Find::name && /.pm$/
},

INC
);

print join "n&quot;, files;

If you simply need to quickly check to see if a module is available, you
can check for its documentation. If you can read the documentation the
module is most likely installed. If you cannot read the documentation,
the module might not have any (in rare cases).

prompt% perldoc Module::Name

You can also try to include the module in a one-liner to see if perl
finds it.

perl -MModule::Name -e1

--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<; merlyn%40stonehenge.com">merlynstonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

__._,_.___
.

__,_._,___
[1-2]

about | contact  Other archives ( Real Estate discussion Medical topics )