1CORELIST(1) User Contributed Perl Documentation CORELIST(1)
2
3
4
6 corelist - a commandline frontend to Module::CoreList
7
9 See Module::CoreList for one.
10
12 corelist -v
13 corelist [-a] <ModuleName> ⎪ /<ModuleRegex>/ [<ModuleVersion>] ...
14 corelist [-v <PerlVersion>] [ <ModuleName> ⎪ /<ModuleRegex>/ ] ...
15
17 -a modulename
18 lists all versions of the given module (or the matching modules, in
19 case you used a module regexp) in the perls Module::CoreList knows
20 about.
21
22 corelist -a utf8
23
24 utf8 was first released with perl 5.006
25 5.006 undef
26 5.006001 undef
27 5.006002 undef
28 5.007003 1.00
29 5.008 1.00
30 5.008001 1.02
31 5.008002 1.02
32 5.008003 1.02
33 5.008004 1.03
34 5.008005 1.04
35 5.008006 1.04
36 5.008007 1.05
37 5.008008 1.06
38 5.009 1.02
39 5.009001 1.02
40 5.009002 1.04
41 5.009003 1.06
42
43 -? or -help
44 help! help! help! to see more help, try --man.
45
46 -man
47 all of the help
48
49 -v lists all of the perl release versions we got the CoreList for.
50
51 If you pass a version argument (value of $], like 5.00503 or
52 5.008008), you get a list of all the modules and their respective
53 versions. (If you have the "version" module, you can also use new-
54 style version numbers, like 5.8.8.)
55
56 In module filtering context, it can be used as Perl version filter.
57
58 As a special case, if you specify the module name "Unicode", you'll get
59 the version number of the Unicode Character Database bundled with the
60 requested perl versions.
61
63 $ corelist File::Spec
64
65 File::Spec was first released with perl 5.005
66
67 $ corelist File::Spec 0.83
68
69 File::Spec 0.83 was released with perl 5.007003
70
71 $ corelist File::Spec 0.89
72
73 File::Spec 0.89 was not in CORE (or so I think)
74
75 $ corelist File::Spec::Aliens
76
77 File::Spec::Aliens was not in CORE (or so I think)
78
79 $ corelist /IPC::Open/
80
81 IPC::Open2 was first released with perl 5
82
83 IPC::Open3 was first released with perl 5
84
85 $ corelist /MANIFEST/i
86
87 ExtUtils::Manifest was first released with perl 5.001
88
89 $ corelist /Template/
90
91 /Template/ has no match in CORE (or so I think)
92
93 $ corelist -v 5.8.8 B
94
95 B 1.09_01
96
97 $ corelist -v 5.8.8 /^B::/
98
99 B::Asmdata 1.01
100 B::Assembler 0.07
101 B::Bblock 1.02_01
102 B::Bytecode 1.01_01
103 B::C 1.04_01
104 B::CC 1.00_01
105 B::Concise 0.66
106 B::Debug 1.02_01
107 B::Deparse 0.71
108 B::Disassembler 1.05
109 B::Lint 1.03
110 B::O 1.00
111 B::Showlex 1.02
112 B::Stackobj 1.00
113 B::Stash 1.00
114 B::Terse 1.03_01
115 B::Xref 1.01
116
118 Copyright (c) 2002-2007 by D.H. aka PodMaster
119
120 Currently maintained by the perl 5 porters <perl5-porters@perl.org>.
121
122 This program is distributed under the same terms as perl itself. See
123 http://perl.org/ or http://cpan.org/ for more info on that.
124
125
126
127perl v5.8.8 2007-05-09 CORELIST(1)