http://qs321.pair.com?node_id=777484


in reply to oneliner to get module version

I usually use bart's Which version is this module?.

HTH,

planetscape

Replies are listed 'Best First'.
Re^2: oneliner to get module version
by syphilis (Archbishop) on Jul 06, 2009 at 08:57 UTC
    The batch file (equivalent to bart's) that I'm using as a result of this thread is:
    @echo off perl -le "require %1; print %1->VERSION"
    As mentioned above, loading the module with '-M' or 'use' won't work with some modules - eg Inline::C, Inline::CPP, Parse::RecDescent. With bart's version.bat I get:
    C:\_32>version Parse::RecDescent Usage: perl -MLocalTest - <grammarfile> <classname> C:\_32>version Inline::C It is invalid to use 'Inline::C' directly. Please consult the Inline documentation for more information. at -e line 0 BEGIN failed--compilation aborted. C:\_32>version Inline::CPP It is invalid to use 'Inline::CPP' directly. Please consult the Inline documentation for more information. at -e line 0 BEGIN failed--compilation aborted.
    Cheers,
    Rob