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


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