Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Installed Module

by davidrw (Prior)
on Apr 12, 2005 at 19:06 UTC ( [id://447137]=note: print w/replies, xml ) Need Help??


in reply to Installed Module

This will list what you have installed, including your version number and the lastest & greatest available version number. (This may only include what's been installed via the cpan command/module, but i'm not sure--the version comparison if definitely nice though)
/usr/bin/perl -MCPAN -e 'CPAN::Shell->r;'

Replies are listed 'Best First'.
Re^2: Installed Module
by Ponky (Curate) on Apr 12, 2005 at 22:43 UTC
    Unfortunately that only lists the modules where there is a later version available on CPAN. Therefore if you have the latest version of all modules installed it lists nothing.
      ah. yup, you're right. Ok, i'll actually read the doc :) From man CPAN, there is:
      # list all modules on my disk that have newer versions on C +PAN for $mod (CPAN::Shell->expand("Module","/./")){ next unless $mod->inst_file; next if $mod->uptodate; printf "Module %s is installed as %s, could be updated to + %s from CPAN\n", $mod->id, $mod->inst_version, $mod->cpan_v +ersion; }
      Commenting out the "next if $mod->uptodate;" produces code that shows installed modules, version, and cpan version. one-line-ified:
      perl -MCPAN -e 'for $m (CPAN::Shell->expand("Module","/./")){printf "% +s %s (%s)\n",$m->id,$m->inst_version,$m->cpan_version if $m->inst_fil +e}'

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (7)
As of 2024-04-23 11:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found