1BASEPODS(1) User Contributed Perl Documentation BASEPODS(1)
2
3
4
6 basepods - print out pod paths for the standard perl manpages
7
9 This program uses your configuration's "installprivlib" directory to
10 look up the full paths to those pod pages. Any files in that directory
11 whose names end in ".pod" will be printed to the standard output, one
12 per line. This is normally used in backticks to produce a list of
13 filenames for other commands.
14
16 $ podgrep typeglob `basepods`
17
18 $ basepods | grep delt
19 /usr/local/devperl/lib/5.00554/pod/perl5004delta.pod
20 /usr/local/devperl/lib/5.00554/pod/perl5005delta.pod
21 /usr/local/devperl/lib/5.00554/pod/perldelta.pod
22
23 You can also run this using alternate perl binaries, like so:
24
25 $ oldperl -S basepods | grep delt
26 /usr/lib/perl5/pod/perldelta.pod
27
28 $ podgrep -i thread `filsperl basepods | grep delt`
29 ....
30
32 faqpods(1), modpods(1), pods(1), sitepod(1), podpath(1), and stdpod(1).
33
35 Copyright (C) 1999 Tom Christiansen.
36
37 Copyright (C) 2006-2008 Mark Leighton Fisher.
38
39 This is free software; you can redistribute it and/or modify it under
40 the terms of either: (a) the GNU General Public License as published by
41 the Free Software Foundation; either version 1, or (at your option) any
42 later version, or (b) the Perl "Artistic License". (This is the Perl 5
43 licensing scheme.)
44
45 Please note this is a change from the original pmtools-1.00 (still
46 available on CPAN), as pmtools-1.00 were licensed only under the Perl
47 "Artistic License".
48
49
50
51perl v5.12.0 2010-05-04 BASEPODS(1)