1PMDESC(1) User Contributed Perl Documentation PMDESC(1)
2
3
4
6 pmdesc - print out version and whatis description of perl modules
7
9 Given one or more module names, show the version number (if known) and
10 the `whatis' line, that is, the NAME section's description, typically
11 used for generation whatis databases.
12
14 $ pmdesc IO::Socket
15 IO::Socket (1.25) - Object interface to socket communications
16
17 $ oldperl pmdesc IO::Socket
18 IO::Socket (1.1603) - Object interface to socket communications
19
20 $ pmdesc `pminst -s ⎪ perl -lane 'print $F[1] if $F[0] =~ /site/'`
21 XML::Parser::Expat (2.19) - Lowlevel access to James Clark's expat XML parser
22 XML::Parser (2.19) - A perl module for parsing XML documents
23
25 This only works on modules. It should also work on filenames, but then
26 it's a bit tricky finding out the package to call the VERSION method
27 on.
28
30 pmdesc(1) pminst(1) pmpath(1) pmvers(1)
31
33 Copyright (c) 1999 Tom Christiansen
34
35 This is free software. You may modify it and distribute it under
36 Perl's Artistic Licence. Modified versions must be clearly indicated.
37
38
39
40perl v5.8.8 2006-03-30 PMDESC(1)