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 \*(C`import()\*(C' 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 \*(C`<[email protected]>\*(C'.

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 \s-1WITHOUT\s0 \s-1ANY\s0 \s-1WARRANTY\s0; without even the implied warranty of \s-1MERCHANTABILITY\s0 or \s-1FITNESS\s0 \s-1FOR\s0 A \s-1PARTICULAR\s0 \s-1PURPOSE\s0.