|
NAMEmversion - Program for querying Perl module versionsVERSIONversion 0.201SYNOPSISThis program shows you the version of a module or several modules, in a comfortable manner.mversion Dancer mversion --dev --full This That Another mversion -q -i modules.txt In Perl-world, we have many ways to determine a version of a module. You can run "perl -MModule -le'print $Module::Version'", but once the name is very long it becomes tiresome to write. We can try to load the module in a specific version that is (hopefully) greater than what we already have installed (if at all). That way we purposely inflict an error on the compiler and try to read the error msg. "perl -MModule\ 9999". This does not work on multiple modules at once. Some modules even have long version numbers, such as a date, and then you need to run "perl -MModule\ 9999999999" which is seriously annoying. There are a few modules out there that get you the version number of other modules but none of them are applications, nor do they have enough options for comfortable day-to-day usage. This is where "mversion" comes in. OPTIONS
SEE ALSOModule::VersionGithub page at <http://github.com/xsawyerx/module-version>. AUTHORSawyer XCOPYRIGHT AND LICENSEThis software is copyright (c) 2010-2018 by Sawyer X.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |