Provided by: libv-perl_0.13-1_all 

NAME
V - Print version of the specified module(s).
SYNOPSIS
$ perl -MV=V
or if you want more than one
$ perl -MV=CPAN,V
Can now also be used as a light-weight module for getting versions of modules without loading them:
BEGIN { $V::NO_EXIT = 1 }
require V;
printf "%s has version '%s'\n", "V", V::get_version( "V" );
DESCRIPTION
This module uses stolen code from Module::Info to find the location and version of the specified
module(s). It prints them and exit()s.
It defines "import()" and is based on an idea from Michael Schwern on the perl5-porters list. See the
discussion:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2002-01/msg00760.html
AUTHOR
Abe Timmerman "<abeltje@cpan.org>".
COPYRIGHT & LICENSE
Copyright 2002-2006 Abe Timmerman, All Rights Reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl
itself.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
perl v5.10.1 2007-11-07 V(3pm)