Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pmvers(1p) [debian man page]

PMVERS(1p)						User Contributed Perl Documentation						PMVERS(1p)

NAME
pmvers - print out a module's version DESCRIPTION
Given one or more module names, show the version number if present. If more than one argument is given, the name of the module will also be printed. Not all modules define version numbers, however. EXAMPLES
$ pmvers CGI 2.46 $ pmvers IO::Socket Text::Parsewords IO::Socket: 1.25 Text::ParseWords: 3.1 $ oldperl -S pmvers CGI 2.42 $ filsperl -S pmvers CGI 2.46 $ pmvers Devel::Loaded pmvers: unknown version for module `Devel::Loaded' h=ead1 SEE ALSO pmdesc(1), pmpath(1), pmcat(1). AUTHORS and COPYRIGHTS Copyright (C) 1999 Tom Christiansen. Copyright (C) 2006-2008 Mark Leighton Fisher. This is free software; you can redistribute it and/or modify it under the terms of either: (a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or (b) the Perl "Artistic License". (This is the Perl 5 licensing scheme.) Please note this is a change from the original pmtools-1.00 (still available on CPAN), as pmtools-1.00 were licensed only under the Perl "Artistic License". perl v5.10.1 2010-02-22 PMVERS(1p)

Check Out this Related Man Page

PMDESC(1p)						User Contributed Perl Documentation						PMDESC(1p)

NAME
pmdesc - print out version and whatis description of perl modules DESCRIPTION
Given one or more module names, show the version number (if known) and the `whatis' line, that is, the NAME section's description, typically used for generation whatis databases. EXAMPLES
$ pmdesc IO::Socket IO::Socket (1.25) - Object interface to socket communications $ oldperl pmdesc IO::Socket IO::Socket (1.1603) - Object interface to socket communications $ pmdesc `pminst -s | perl -lane 'print $F[1] if $F[0] =~ /site/'` XML::Parser::Expat (2.19) - Lowlevel access to James Clark's expat XML parser XML::Parser (2.19) - A perl module for parsing XML documents RESTRICTIONS
This only works on modules. It should also work on filenames, but then it's a bit tricky finding out the package to call the VERSION method on. SEE ALSO
pmdesc(1) pminst(1) pmpath(1) pmvers(1) AUTHORS and COPYRIGHTS Copyright (C) 1999 Tom Christiansen. Copyright (C) 2006-2008 Mark Leighton Fisher. This is free software; you can redistribute it and/or modify it under the terms of either: (a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or (b) the Perl "Artistic License". (This is the Perl 5 licensing scheme.) Please note this is a change from the original pmtools-1.00 (still available on CPAN), as pmtools-1.00 were licensed only under the Perl "Artistic License". perl v5.10.1 2010-02-22 PMDESC(1p)
Man Page

4 More Discussions You Might Find Interesting

1. Email Antispam Techniques and Email Filtering

Perl module to interface with Procmailrc files

Scott Wiersdorf (www.perlcode.org) wrote a Perl module to interface with procmailrc files. The name of the module is Mail::Procmailrc (available from CPAN). It comes with a simple CGI (unpolished, insecure, but useful as a proof-of-concept) to allow you to edit procmailrc files from a web... (0 Replies)
Discussion started by: Neo
0 Replies

2. HP-UX

hp-ux licensing

Hi Guys, Can someone please give me an introduction with hp-ux licensing? Is the licensing per user or per cpu or both? How do you push it on the server? Or is it included in the hardware price. Thanks in advance, itik (0 Replies)
Discussion started by: itik
0 Replies

3. Infrastructure Monitoring

Nagiosgraph 1.2.0 (Default branch)

http://c.fsdn.com/fm/screenshots/70251_thumb.jpg Nagiosgraph is an add-on for Nagios. It collects service perfdata in RRD format, and displays the resulting graphs via CGI. License: Artistic License Changes: This release adds support for tracking and graphing minimum and maximum values. This... (0 Replies)
Discussion started by: Linux Bot
0 Replies

4. Shell Programming and Scripting

Perl program to simulate Least Recently Loaded paging

Hi, If I want to write perl program that simulated Least Recently Loaded(LRL) to calculate page fault: The user must input page access and number of page fram that need to be greater than 3 Example Page Access: 5, 3, 4, 1, 7, 5, 3, 2, 3, 6, 7, 1, 4, 6 Frames: 3 PA: 5 3 4 1 7 5 3 2 3 6... (6 Replies)
Discussion started by: guidely
6 Replies