Re: How can I find the module version?

2003-06-11 Thread Tassilo von Parseval
On Tue, Jun 10, 2003 at 09:32:53AM -0400 Rick Ressegger wrote: If I want to know what version of a module is already installed on a system, how can I disclose this? Either use Janek's suggestion or ask for the value of $VERSION for the module in question: perl -MSome::Module -e 'warn

How can I find the module version?

2003-06-10 Thread Rick Ressegger
If I want to know what version of a module is already installed on a system, how can I disclose this? Can multiple versions of a module exist in a library or does one get superceded by another that is installed later? Rick Ressegger Fairmont WV -- To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: How can I find the module version?

2003-06-10 Thread Janek Schleicher
Rick Ressegger wrote at Tue, 10 Jun 2003 09:32:53 -0400: If I want to know what version of a module is already installed on a system, how can I disclose this? A simple way that works often is perl -MModule::Name -e 'print $Module::Name::VERSION' Another way would be e.g. to use the CPAN