GertMT has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; use diagnostics; use CGI qw(:standard); use ExtUtils::Installed; my $instmod = ExtUtils::Installed->new(); foreach my $module ( $instmod->modules() ) { my $version = $instmod->version($module) || "???"; print "$module -- $version\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Which Modules installed: Mac OS X Leopard
by RMGir (Prior) on Nov 09, 2007 at 14:16 UTC | |
|
Re: Which Modules installed: Mac OS X Leopard
by JSchmitz (Canon) on Nov 09, 2007 at 14:49 UTC | |
|
Re: Which Modules installed: Mac OS X Leopard
by Anonymous Monk on Nov 09, 2007 at 08:29 UTC |