1PMPATH(1) User Contributed Perl Documentation PMPATH(1)
2
3
4
6 pmpath - show full path to a perl module
7
9 pmpath module ...
10
12 For each module name given as an argument, produces its full path on
13 the standard output, one per line.
14
16 $ pmpath CGI
17 /usr/local/devperl/lib/5.00554/CGI.pm
18
19 $ filsperl -S pmpath IO::Socket CGI::Carp
20 /usr/local/filsperl/lib/5.00554/i686-linux-thread/IO/Socket.pm
21 /usr/local/filsperl/lib/5.00554/CGI/Carp.pm
22
23 $ oldperl -S pmpath CGI CGI::Imagemap
24 /usr/lib/perl5/CGI.pm
25 /usr/lib/perl5/site_perl/CGI/Imagemap.pm
26
28 pmdesc(1), pmvers(1), pmcat(1).
29
31 Copyright (C) 1999 Tom Christiansen.
32
33 Copyright (C) 2006-2014 Mark Leighton Fisher.
34
36 This is free software; you can redistribute it and/or modify it under
37 the terms of either: (a) the GNU General Public License as published by
38 the Free Software Foundation; either version 1, or (at your option) any
39 later version, or (b) the Perl "Artistic License". (This is the Perl 5
40 licensing scheme.)
41
42 Please note this is a change from the original pmtools-1.00 (still
43 available on CPAN), as pmtools-1.00 were licensed only under the Perl
44 "Artistic License".
45
46
47
48perl v5.34.0 2021-07-23 PMPATH(1)