NAME
which_pm - Perl script to find out which versions of certain Perl modules are installed
SYNOPSIS
which_pm [--verbose] [--quiet] DBI DBD::*
which_pm --help
which_pm --man
which_pm Module::Find Module::Which File::*
Options:
-verbose shows error messages (due to "require $module")
-quiet hides error messages (due to "require $module")
-help brief help message
-man full documentation
OPTIONS
- -verbose
-
Version is determined by doing a
require
on runtime. In case, the statement fails, error messages are shown. - -quiet
-
Version is determined by doing a
require
on runtime. In case, the statement fails, error messages are silently hidden. This is the default. A failure duringrequire
will result 'unknown' as version. - -help
-
Print a brief help message and exits.
- -man
-
Prints the manual page and exits.
DESCRIPTION
See the the documentation of Module::Which.
SEE ALSO
Please report bugs via CPAN RT http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Which.
AUTHOR
Adriano R. Ferreira, <ferreira@cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2005 by Adriano R. Ferreira
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.