in reply to Installed modules and their versions
#!/usr/bin/perl 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^2: Installed modules and their versions
by Anonymous Monk on Jan 08, 2005 at 06:15 UTC |