This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlsec: Nit
[perl5.git] / pod / perlutil.pod
CommitLineData
497711e7
GS
1=head1 NAME
2
3perlutil - utilities packaged with the Perl distribution
4
5=head1 DESCRIPTION
6
7Along with the Perl interpreter itself, the Perl distribution installs a
8range of utilities on your system. There are also several utilities
9which are used by the Perl distribution itself as part of the install
10process. This document exists to list all of these utilities, explain
11what they are for and provide pointers to each module's documentation,
12if appropriate.
13
baf0caad
RGS
14=head1 LIST OF UTILITIES
15
16=head2 Documentation
497711e7
GS
17
18=over 3
19
20=item L<perldoc|perldoc>
21
22The main interface to Perl's documentation is C<perldoc>, although
23if you're reading this, it's more than likely that you've already found
24it. F<perldoc> will extract and format the documentation from any file
25in the current directory, any Perl module installed on the system, or
26any of the standard documentation pages, such as this one. Use
27C<perldoc E<lt>nameE<gt>> to get information on any of the utilities
28described in this document.
29
30=item L<pod2man|pod2man> and L<pod2text|pod2text>
31
32If it's run from a terminal, F<perldoc> will usually call F<pod2man> to
33translate POD (Plain Old Documentation - see L<perlpod> for an
3958b146 34explanation) into a manpage, and then run F<man> to display it; if
497711e7
GS
35F<man> isn't available, F<pod2text> will be used instead and the output
36piped through your favourite pager.
37
ad68f4fd 38=item L<pod2html|pod2html>
497711e7 39
ad68f4fd
CBW
40As well as these two, there is another converter: F<pod2html> will
41produce HTML pages from POD.
497711e7
GS
42
43=item L<pod2usage|pod2usage>
44
45If you just want to know how to use the utilities described here,
46F<pod2usage> will just extract the "USAGE" section; some of
47the utilities will automatically call F<pod2usage> on themselves when
48you call them with C<-help>.
49
50=item L<podselect|podselect>
51
52F<pod2usage> is a special case of F<podselect>, a utility to extract
53named sections from documents written in POD. For instance, while
54utilities have "USAGE" sections, Perl modules usually have "SYNOPSIS"
55sections: C<podselect -s "SYNOPSIS" ...> will extract this section for
56a given file.
57
58=item L<podchecker|podchecker>
59
60If you're writing your own documentation in POD, the F<podchecker>
61utility will look for errors in your markup.
62
63=item L<splain|splain>
64
65F<splain> is an interface to L<perldiag> - paste in your error message
66to it, and it'll explain it for you.
67
a24e5063 68=item C<roffitall>
497711e7
GS
69
70The C<roffitall> utility is not installed on your system but lives in
71the F<pod/> directory of your Perl source kit; it converts all the
72documentation from the distribution to F<*roff> format, and produces a
73typeset PostScript or text file of the whole lot.
74
75=back
76
b6538e4f 77=head2 Converters
497711e7
GS
78
79To help you convert legacy programs to Perl, we've included three
80conversion filters:
81
82=over 3
83
84=item L<a2p|a2p>
85
86F<a2p> converts F<awk> scripts to Perl programs; for example, C<a2p -F:>
87on the simple F<awk> script C<{print $2}> will produce a Perl program
88based around this code:
89
90 while (<>) {
944d48f7 91 ($Fld1,$Fld2) = split(/[:\n]/, $_, -1);
497711e7
GS
92 print $Fld2;
93 }
94
baf0caad 95=item L<s2p|s2p> and L<psed>
497711e7
GS
96
97Similarly, F<s2p> converts F<sed> scripts to Perl programs. F<s2p> run
98on C<s/foo/bar> will produce a Perl program based around this:
99
100 while (<>) {
5b3eff12 101 chomp;
497711e7
GS
102 s/foo/bar/g;
103 print if $printit;
104 }
105
baf0caad
RGS
106When invoked as F<psed>, it behaves as a F<sed> implementation, written in
107Perl.
108
497711e7
GS
109=item L<find2perl|find2perl>
110
111Finally, F<find2perl> translates C<find> commands to Perl equivalents which
112use the L<File::Find|File::Find> module. As an example,
113C<find2perl . -user root -perm 4000 -print> produces the following callback
114subroutine for C<File::Find>:
115
116 sub wanted {
117 my ($dev,$ino,$mode,$nlink,$uid,$gid);
118 (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_)) &&
119 $uid == $uid{'root'}) &&
120 (($mode & 0777) == 04000);
121 print("$name\n");
122 }
123
124=back
125
126As well as these filters for converting other languages, the
127L<pl2pm|pl2pm> utility will help you convert old-style Perl 4 libraries to
128new-style Perl5 modules.
129
a6fb92f1
JH
130=head2 Administration
131
132=over 3
133
baf0caad
RGS
134=item L<config_data|config_data>
135
136Query or change configuration of Perl modules that use Module::Build-based
137configuration files for features and config data.
138
a6fb92f1
JH
139=item L<libnetcfg|libnetcfg>
140
141To display and change the libnet configuration run the libnetcfg command.
142
baf0caad 143=item L<perlivp>
bb4e9162 144
baf0caad
RGS
145The F<perlivp> program is set up at Perl source code build time to test
146the Perl version it was built under. It can be used after running C<make
147install> (or your platform's equivalent procedure) to verify that perl
148and its libraries have been installed correctly.
bb4e9162 149
a6fb92f1
JH
150=back
151
497711e7
GS
152=head2 Development
153
154There are a set of utilities which help you in developing Perl programs,
155and in particular, extending Perl with C.
156
157=over 3
158
159=item L<perlbug|perlbug>
160
161F<perlbug> is the recommended way to report bugs in the perl interpreter
162itself or any of the standard library modules back to the developers;
163please read through the documentation for F<perlbug> thoroughly before
164using it to submit a bug report.
165
f9615397 166=item L<perlthanks|perlbug>
03f3e794
RGS
167
168This program provides an easy way to send a thank-you message back to the
169authors and maintainers of perl. It's just F<perlbug> installed under
170another name.
171
497711e7
GS
172=item L<h2ph|h2ph>
173
174Back before Perl had the XS system for connecting with C libraries,
175programmers used to get library constants by reading through the C
176header files. You may still see C<require 'syscall.ph'> or similar
177around - the F<.ph> file should be created by running F<h2ph> on the
178corresponding F<.h> file. See the F<h2ph> documentation for more on how
c06dc7de 179to convert a whole bunch of header files at once.
497711e7
GS
180
181=item L<c2ph|c2ph> and L<pstruct|pstruct>
182
183F<c2ph> and F<pstruct>, which are actually the same program but behave
184differently depending on how they are called, provide another way of
185getting at C with Perl - they'll convert C structures and union declarations
186to Perl code. This is deprecated in favour of F<h2xs> these days.
187
188=item L<h2xs|h2xs>
189
190F<h2xs> converts C header files into XS modules, and will try and write
191as much glue between C libraries and Perl modules as it can. It's also
192very useful for creating skeletons of pure Perl modules.
193
baf0caad
RGS
194=item L<enc2xs>
195
196F<enc2xs> builds a Perl extension for use by Encode from either
197Unicode Character Mapping files (.ucm) or Tcl Encoding Files (.enc).
198Besides being used internally during the build process of the Encode
199module, you can use F<enc2xs> to add your own encoding to perl.
200No knowledge of XS is necessary.
201
202=item L<xsubpp>
203
204F<xsubpp> is a compiler to convert Perl XS code into C code.
205It is typically run by the makefiles created by L<ExtUtils::MakeMaker>.
206
207F<xsubpp> will compile XS code into C code by embedding the constructs
208necessary to let C functions manipulate Perl values and creates the glue
209necessary to let Perl access those functions.
210
baf0caad
RGS
211=item L<prove>
212
e1020413 213F<prove> is a command-line interface to the test-running functionality
baf0caad
RGS
214of F<Test::Harness>. It's an alternative to C<make test>.
215
216=item L<corelist>
217
218A command-line front-end to C<Module::CoreList>, to query what modules
219were shipped with given versions of perl.
220
221=back
222
223=head2 General tools
224
225A few general-purpose tools are shipped with perl, mostly because they
226came along modules included in the perl distribution.
227
228=over 3
229
230=item L<piconv>
231
232B<piconv> is a Perl version of B<iconv>, a character encoding converter
233widely available for various Unixen today. This script was primarily a
7c2e2b3a 234technology demonstrator for Perl v5.8.0, but you can use piconv in the
baf0caad
RGS
235place of iconv for virtually any case.
236
237=item L<ptar>
238
239F<ptar> is a tar-like program, written in pure Perl.
240
241=item L<ptardiff>
242
243F<ptardiff> is a small utility that produces a diff between an extracted
634d76cd
RGS
244archive and an unextracted one. (Note that this utility requires the
245C<Text::Diff> module to function properly; this module isn't distributed
246with perl, but is available from the CPAN.)
baf0caad 247
deabda19
CBW
248=item L<ptargrep>
249
250F<ptargrep> is a utility to apply pattern matching to the contents of files
251in a tar archive.
252
baf0caad
RGS
253=item L<shasum>
254
255This utility, that comes with the C<Digest::SHA> module, is used to print
256or verify SHA checksums.
257
08ad9465
CBW
258=item L<zipdetails>
259
260L<zipdetails> displays information about the internal record structure of the zip file.
261It is not concerned with displaying any details of the compressed data stored in the zip file.
262
baf0caad
RGS
263=back
264
265=head2 Installation
266
267These utilities help manage extra Perl modules that don't come with the perl
268distribution.
269
270=over 3
271
272=item L<cpan>
273
274F<cpan> is a command-line interface to CPAN.pm. It allows you to install
275modules or distributions from CPAN, or just get information about them, and
276a lot more. It is similar to the command line mode of the L<CPAN> module,
277
278 perl -MCPAN -e shell
279
280=item L<instmodsh>
281
282A little interface to ExtUtils::Installed to examine installed modules,
283validate your packlists and even create a tarball from an installed module.
284
497711e7
GS
285=back
286
baf0caad 287=head1 SEE ALSO
497711e7
GS
288
289L<perldoc|perldoc>, L<pod2man|pod2man>, L<perlpod>,
290L<pod2html|pod2html>, L<pod2usage|pod2usage>, L<podselect|podselect>,
291L<podchecker|podchecker>, L<splain|splain>, L<perldiag>,
f9615397 292C<roffitall|roffitall>, L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>,
497711e7 293L<File::Find|File::Find>, L<pl2pm|pl2pm>, L<perlbug|perlbug>,
c9dab4e9 294L<h2ph|h2ph>, L<c2ph|c2ph>, L<h2xs|h2xs>, L<enc2xs>, L<xsubpp>,
fb598ba5 295L<cpan>, L<instmodsh>, L<piconv>, L<prove>,
08ad9465 296L<corelist>, L<ptar>, L<ptardiff>, L<shasum>, L<zipdetails>
497711e7
GS
297
298=cut