perlutil.pod
来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· POD 代码 · 共 304 行
POD
304 行
=head1 NAMEperlutil - utilities packaged with the Perl distribution=head1 DESCRIPTIONAlong with the Perl interpreter itself, the Perl distribution installs arange of utilities on your system. There are also several utilitieswhich are used by the Perl distribution itself as part of the installprocess. This document exists to list all of these utilities, explainwhat they are for and provide pointers to each module's documentation,if appropriate.=head1 LIST OF UTILITIES=head2 Documentation=over 3=item L<perldoc|perldoc>The main interface to Perl's documentation is C<perldoc>, althoughif you're reading this, it's more than likely that you've already foundit. F<perldoc> will extract and format the documentation from any filein the current directory, any Perl module installed on the system, orany of the standard documentation pages, such as this one. Use C<perldoc E<lt>nameE<gt>> to get information on any of the utilitiesdescribed in this document.=item L<pod2man|pod2man> and L<pod2text|pod2text>If it's run from a terminal, F<perldoc> will usually call F<pod2man> totranslate POD (Plain Old Documentation - see L<perlpod> for anexplanation) into a manpage, and then run F<man> to display it; ifF<man> isn't available, F<pod2text> will be used instead and the outputpiped through your favourite pager.=item L<pod2html|pod2html> and L<pod2latex|pod2latex>As well as these two, there are two other converters: F<pod2html> willproduce HTML pages from POD, and F<pod2latex>, which produces LaTeXfiles.=item L<pod2usage|pod2usage>If you just want to know how to use the utilities described here,F<pod2usage> will just extract the "USAGE" section; some ofthe utilities will automatically call F<pod2usage> on themselves whenyou call them with C<-help>.=item L<podselect|podselect>F<pod2usage> is a special case of F<podselect>, a utility to extractnamed sections from documents written in POD. For instance, whileutilities have "USAGE" sections, Perl modules usually have "SYNOPSIS"sections: C<podselect -s "SYNOPSIS" ...> will extract this section fora given file.=item L<podchecker|podchecker>If you're writing your own documentation in POD, the F<podchecker>utility will look for errors in your markup.=item L<splain|splain>F<splain> is an interface to L<perldiag> - paste in your error messageto it, and it'll explain it for you.=item L<roffitall|roffitall>The C<roffitall> utility is not installed on your system but lives inthe F<pod/> directory of your Perl source kit; it converts all thedocumentation from the distribution to F<*roff> format, and produces atypeset PostScript or text file of the whole lot.=back=head2 ConvertorsTo help you convert legacy programs to Perl, we've included threeconversion filters:=over 3=item L<a2p|a2p>F<a2p> converts F<awk> scripts to Perl programs; for example, C<a2p -F:>on the simple F<awk> script C<{print $2}> will produce a Perl programbased around this code: while (<>) { ($Fld1,$Fld2) = split(/[:\n]/, $_, 9999); print $Fld2; }=item L<s2p|s2p> and L<psed>Similarly, F<s2p> converts F<sed> scripts to Perl programs. F<s2p> runon C<s/foo/bar> will produce a Perl program based around this: while (<>) { chomp; s/foo/bar/g; print if $printit; }When invoked as F<psed>, it behaves as a F<sed> implementation, written inPerl.=item L<find2perl|find2perl>Finally, F<find2perl> translates C<find> commands to Perl equivalents which use the L<File::Find|File::Find> module. As an example, C<find2perl . -user root -perm 4000 -print> produces the following callbacksubroutine for C<File::Find>: 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"); }=backAs well as these filters for converting other languages, theL<pl2pm|pl2pm> utility will help you convert old-style Perl 4 libraries to new-style Perl5 modules.=head2 Administration=over 3=item L<config_data|config_data>Query or change configuration of Perl modules that use Module::Build-basedconfiguration files for features and config data.=item L<libnetcfg|libnetcfg>To display and change the libnet configuration run the libnetcfg command.=item L<perlivp>The F<perlivp> program is set up at Perl source code build time to testthe Perl version it was built under. It can be used after running C<makeinstall> (or your platform's equivalent procedure) to verify that perland its libraries have been installed correctly.=back=head2 DevelopmentThere are a set of utilities which help you in developing Perl programs, and in particular, extending Perl with C.=over 3=item L<perlbug|perlbug>F<perlbug> is the recommended way to report bugs in the perl interpreteritself or any of the standard library modules back to the developers;please read through the documentation for F<perlbug> thoroughly beforeusing it to submit a bug report.=item L<h2ph|h2ph>Back before Perl had the XS system for connecting with C libraries,programmers used to get library constants by reading through the Cheader files. You may still see C<require 'syscall.ph'> or similararound - the F<.ph> file should be created by running F<h2ph> on thecorresponding F<.h> file. See the F<h2ph> documentation for more on howto convert a whole bunch of header files at once.=item L<c2ph|c2ph> and L<pstruct|pstruct>F<c2ph> and F<pstruct>, which are actually the same program but behavedifferently depending on how they are called, provide another way ofgetting at C with Perl - they'll convert C structures and union declarationsto Perl code. This is deprecated in favour of F<h2xs> these days.=item L<h2xs|h2xs>F<h2xs> converts C header files into XS modules, and will try and writeas much glue between C libraries and Perl modules as it can. It's alsovery useful for creating skeletons of pure Perl modules.=item L<enc2xs>F<enc2xs> builds a Perl extension for use by Encode from eitherUnicode Character Mapping files (.ucm) or Tcl Encoding Files (.enc).Besides being used internally during the build process of the Encodemodule, you can use F<enc2xs> to add your own encoding to perl.No knowledge of XS is necessary.=item L<xsubpp>F<xsubpp> is a compiler to convert Perl XS code into C code.It is typically run by the makefiles created by L<ExtUtils::MakeMaker>.F<xsubpp> will compile XS code into C code by embedding the constructsnecessary to let C functions manipulate Perl values and creates the gluenecessary to let Perl access those functions.=item L<dprofpp|dprofpp>Perl comes with a profiler, the F<Devel::DProf> module. TheF<dprofpp> utility analyzes the output of this profiler and tells youwhich subroutines are taking up the most run time. See L<Devel::DProf>for more information.=item L<prove>F<prove> is a command-line interface to the test-running functionality ofof F<Test::Harness>. It's an alternative to C<make test>.=item L<corelist>A command-line front-end to C<Module::CoreList>, to query what moduleswere shipped with given versions of perl.=back=head2 General toolsA few general-purpose tools are shipped with perl, mostly because theycame along modules included in the perl distribution.=over 3=item L<piconv>B<piconv> is a Perl version of B<iconv>, a character encoding converterwidely available for various Unixen today. This script was primarily atechnology demonstrator for Perl 5.8.0, but you can use piconv in theplace of iconv for virtually any case.=item L<ptar>F<ptar> is a tar-like program, written in pure Perl.=item L<ptardiff>F<ptardiff> is a small utility that produces a diff between an extractedarchive and an unextracted one. (Note that this utility requires theC<Text::Diff> module to function properly; this module isn't distributedwith perl, but is available from the CPAN.)=item L<shasum>This utility, that comes with the C<Digest::SHA> module, is used to printor verify SHA checksums.=back=head2 InstallationThese utilities help manage extra Perl modules that don't come with the perldistribution.=over 3=item L<cpan>F<cpan> is a command-line interface to CPAN.pm. It allows you to installmodules or distributions from CPAN, or just get information about them, anda lot more. It is similar to the command line mode of the L<CPAN> module, perl -MCPAN -e shell=item L<cpanp>F<cpanp> is, like F<cpan>, a command-line interface to the CPAN, usingthe C<CPANPLUS> module as a back-end. It can be used interactively orimperatively.=item L<cpan2dist>F<cpan2dist> is a tool to create distributions (or packages) from CPANmodules, then suitable for your package manager of choice. Support forspecific formats are available from CPAN as C<CPANPLUS::Dist::*> modules.=item L<instmodsh>A little interface to ExtUtils::Installed to examine installed modules,validate your packlists and even create a tarball from an installed module.=back=head1 SEE ALSOL<perldoc|perldoc>, L<pod2man|pod2man>, L<perlpod>,L<pod2html|pod2html>, L<pod2usage|pod2usage>, L<podselect|podselect>,L<podchecker|podchecker>, L<splain|splain>, L<perldiag>,L<roffitall|roffitall>, L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>,L<File::Find|File::Find>, L<pl2pm|pl2pm>, L<perlbug|perlbug>,L<h2ph|h2ph>, L<c2ph|c2ph>, L<h2xs|h2xs>, L<dprofpp|dprofpp>,L<Devel::DProf>, L<enc2xs>, L<xsubpp>, L<cpan>, L<cpanp>, L<cpan2dist>,L<instmodsh>, L<piconv>, L<prove>, L<corelist>, L<ptar>, L<ptardiff>,L<shasum>=cut
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?