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

RE: Find perl module version from command-line

by KM (Priest)
on Oct 18, 2000 at 16:53 UTC ( [id://37318]=note: print w/replies, xml ) Need Help??


in reply to Find perl module version from command-line

This is how I do it for checking one module.. I use CPAN to check multiple:

perl -MMODULE -e 'print $MODULE::VERSION';

Of course, if the module author doesn't put the suggested $VERSION variable in, this won't work :)

Cheers,
KM

Replies are listed 'Best First'.
RE: RE: Find perl module version from command-line
by lachoy (Parson) on Oct 18, 2000 at 22:24 UTC

    Right! This is what I meant by perl -e in my writeup. but I thought it was getting kind of tedious to type this in every time... TMTOWDI.

Re^2: Find perl module version from command-line
by ambrus (Abbot) on Feb 21, 2012 at 16:32 UTC

    A nice shortcut is

    perl -e 'use Some::Module 9e9'
    It is worth noting that perl -MSome::Module=9e9 -e1 works only if that module is Exporter-based, because -M passes that number as an import argument instead of a version number, but then Exporter interprets it as a version number.

Log In?
Username:
Password:

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

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

      No recent polls found