in reply to Re^2: Using Win32::Console
in thread Using Win32::Console
If you want to find the version of a module from the command line:
perl -MSome::Module -le "print $Some::Module::VERSION";
Or:
cpan -D Some::Module
Similarly to install modules, Strawberry ships with cpanm, so to install a module and it's dependencies:
cpanm Some::Module
|
---|