1PODPATH(1) User Contributed Perl Documentation PODPATH(1)
2
3
4
6 podpath - print the path to the Pod
7
9 podpath prints the path to the Pod. podpath calls stdpods underneath if
10 the Pod name includes 'perl'. Otherwise, it searches down @INC,
11 printing the '.pod' filename if there is a separate Pod file, otherwise
12 printing the 'pm' filename. This accommodates systems where the Pod
13 lives in a separate file from the module file.
14
16 $ podpath Cwd
17 /usr/local/devperl/lib/5.00554/Cwd.pm
18
19 It works with alternate installations, too:
20
21 $ devperl -S podpath perlfunc
22 /usr/local/devperl/lib/5.00554/pod/perlfunc.pod
23
24 $ oldperl -S podpath IO::Handle
25 /usr/lib/perl5/i386-linux/5.00404/IO/Handle.pm
26
27 $ filsperl -S podpath Thread
28 /usr/local/filsperl/lib/5.00554/i686-linux-thread/Thread.pm
29
31 stdpods(1), pmpath(1), perlmodlib(1).
32
34 Copyright (C) 1999 Tom Christiansen.
35
36 Copyright (C) 2006-2014, 2018 Mark Leighton Fisher.
37
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.30.1 2020-01-30 PODPATH(1)