=head1 NAME perlutil - utilities packaged with the Perl distribution =head1 DESCRIPTION Along with the Perl interpreter itself, the Perl distribution installs a range of utilities on your system. There are also several utilities which are used by the Perl distribution itself as part of the install process. This document exists to list all of these utilities, explain what they are for and provide pointers to each module's documentation, if appropriate. =head2 DOCUMENTATION =over 3 =item L The main interface to Perl's documentation is C, although if you're reading this, it's more than likely that you've already found it. F will extract and format the documentation from any file in the current directory, any Perl module installed on the system, or any of the standard documentation pages, such as this one. Use CnameE> to get information on any of the utilities described in this document. =item L and L If it's run from a terminal, F will usually call F to translate POD (Plain Old Documentation - see L for an explanation) into a manpage, and then run F to display it; if F isn't available, F will be used instead and the output piped through your favourite pager. =item L and L As well as these two, there are two other converters: F will produce HTML pages from POD, and F, which produces LaTeX files. =item L If you just want to know how to use the utilities described here, F will just extract the "USAGE" section; some of the utilities will automatically call F on themselves when you call them with C<-help>. =item L F is a special case of F, a utility to extract named sections from documents written in POD. For instance, while utilities have "USAGE" sections, Perl modules usually have "SYNOPSIS" sections: C will extract this section for a given file. =item L If you're writing your own documentation in POD, the F utility will look for errors in your markup. =item L F is an interface to L - paste in your error message to it, and it'll explain it for you. =item L The C utility is not installed on your system but lives in the F directory of your Perl source kit; it converts all the documentation from the distribution to F<*roff> format, and produces a typeset PostScript or text file of the whole lot. =back =head2 CONVERTORS To help you convert legacy programs to Perl, we've included three conversion filters: =over 3 =item L F converts F scripts to Perl programs; for example, C on the simple F script C<{print $2}> will produce a Perl program based around this code: while (<>) { ($Fld1,$Fld2) = split(/[:\n]/, $_, 9999); print $Fld2; } =item L Similarly, F converts F scripts to Perl programs. F run on C will produce a Perl program based around this: while (<>) { chomp; s/foo/bar/g; print if $printit; } =item L Finally, F translates C commands to Perl equivalents which use the L module. As an example, C produces the following callback subroutine for C: sub wanted { my ($dev,$ino,$mode,$nlink,$uid,$gid); (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_)) && $uid == $uid{'root'}) && (($mode & 0777) == 04000); print("$name\n"); } =back As well as these filters for converting other languages, the L utility will help you convert old-style Perl 4 libraries to new-style Perl5 modules. =head2 Administration =over 3 =item L To display and change the libnet configuration run the libnetcfg command. =back =head2 Development There are a set of utilities which help you in developing Perl programs, and in particular, extending Perl with C. =over 3 =item L F is the recommended way to report bugs in the perl interpreter itself or any of the standard library modules back to the developers; please read through the documentation for F thoroughly before using it to submit a bug report. =item L Back before Perl had the XS system for connecting with C libraries, programmers used to get library constants by reading through the C header files. You may still see C or similar around - the F<.ph> file should be created by running F on the corresponding F<.h> file. See the F documentation for more on how to convert a whole bunch of header files at once. =item L and L F and F, which are actually the same program but behave differently depending on how they are called, provide another way of getting at C with Perl - they'll convert C structures and union declarations to Perl code. This is deprecated in favour of F these days. =item L F converts C header files into XS modules, and will try and write as much glue between C libraries and Perl modules as it can. It's also very useful for creating skeletons of pure Perl modules. =item L Perl comes with a profiler, the F module. The F utility analyzes the output of this profiler and tells you which subroutines are taking up the most run time. See L for more information. =item L F is the interface to the experimental Perl compiler suite. =back =head2 SEE ALSO L, L, L, L, L, L, L, L, L, L, L, L, L, L, L, L, L, L, L, L, L, L =cut