Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: perl modules replication

by andreas1234567 (Vicar)
on Sep 13, 2007 at 18:28 UTC ( [id://638875]=note: print w/replies, xml ) Need Help??


in reply to perl modules replication

At the very least you can use ExtUtils::Installed to determine what modules in which version you have currently installed:
use strict; use warnings; use ExtUtils::Installed; my $instmod = ExtUtils::Installed->new(); foreach my $module ($instmod->modules()) { my $version = $instmod->version($module); if ( $version ) { print "$module installed, version $version\n"; } else { print "$module installed, version not available\n"; } } __END__
Sort::Versions might be useful when comparing module "numbers".
--
Andreas

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://638875]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-25 13:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found