1PLXLOAD(1) User Contributed Perl Documentation PLXLOAD(1)
2
3
4
6 plxload - show what files a perl program loads at compile time
7
9 $ plxload
10
12 This program is used to show what modules a program would load at
13 compile time via "use". Because this installs an at-exit handler and
14 then uses Perl's -c flag for compile only, it will not find modules
15 loaded at run-time. Use the Devel::Loaded module for that.
16
18 $ plxload perldoc
19 /usr/local/devperl/lib/5.00554/Exporter.pm
20 /usr/local/devperl/lib/5.00554/strict.pm
21 /usr/local/devperl/lib/5.00554/vars.pm
22 /usr/local/devperl/lib/5.00554/i686-linux/Config.pm
23 /usr/local/devperl/lib/5.00554/Getopt/Std.pm
24
25 $ plxload /usr/src/perl5.005_54/installhtml
26 /usr/local/devperl/lib/5.00554/Carp.pm
27 /usr/local/devperl/lib/5.00554/Exporter.pm
28 /usr/local/devperl/lib/5.00554/auto/Getopt/Long/autosplit.ix
29 /usr/local/devperl/lib/5.00554/strict.pm
30 /usr/local/devperl/lib/5.00554/vars.pm
31 /usr/local/devperl/lib/5.00554/Pod/Functions.pm
32 /usr/local/devperl/lib/5.00554/Getopt/Long.pm
33 /usr/local/devperl/lib/5.00554/i686-linux/Config.pm
34 /usr/local/devperl/lib/5.00554/lib.pm
35 /home/tchrist/perllib/Pod/Html.pm
36 /usr/local/devperl/lib/5.00554/Cwd.pm
37 /usr/local/devperl/lib/5.00554/AutoLoader.pm
38
40 Devel::Loaded and pmload(1).
41
43 Copyright (C) 1999 Tom Christiansen.
44
45 Copyright (C) 2006-2014 Mark Leighton Fisher.
46
48 This is free software; you can redistribute it and/or modify it under
49 the terms of either: (a) the GNU General Public License as published by
50 the Free Software Foundation; either version 1, or (at your option) any
51 later version, or (b) the Perl "Artistic License". (This is the Perl 5
52 licensing scheme.)
53
54 Please note this is a change from the original pmtools-1.00 (still
55 available on CPAN), as pmtools-1.00 were licensed only under the Perl
56 "Artistic License".
57
58
59
60perl v5.32.1 2021-01-27 PLXLOAD(1)