[Perl] perldoc and perl/tk
lsprilus at bioinfo2.weizmann.ac.il
lsprilus at bioinfo2.weizmann.ac.il
Mon Nov 25 23:40:02 PST 2002
According to Offer Kaye:
> In a related note, is there a command or utility to let me know the list of
> all installed Perl modules? I vaguely recall that such a thing exists...
Use the ExtUtils::Installed modules from CPAN.
use ExtUtils::Installed;
my ($inst) = ExtUtils::Installed->new();
my (@modules) = $inst->modules();
foreach $module (@modules) {
print $module,"\n";
}
--
Dr Jaime Prilusky | Jaime.Prilusky at weizmann.ac.il
Weizmann Institute of Science | fax: 972-8-9344113
76100 Rehovot - Israel | tel: 972-8-9344959
info URL http://bioinformatics.weizmann.ac.il/jaime_prilusky.html
OCA is at http://bioinformatics.weizmann.ac.il:8500
Perl Users in Rehovot http://rehovot.pm.org/
More information about the Perl
mailing list