This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldiag: rewording
[perl5.git] / pod / perlutil.pod
index e1f7f99..0636b92 100644 (file)
@@ -89,7 +89,7 @@ on the simple F<awk> script C<{print $2}> will produce a Perl program
 based around this code:
 
     while (<>) {
-        ($Fld1,$Fld2) = split(/[:\n]/, $_, 9999);
+        ($Fld1,$Fld2) = split(/[:\n]/, $_, -1);
         print $Fld2;
     }
 
@@ -164,6 +164,12 @@ itself or any of the standard library modules back to the developers;
 please read through the documentation for F<perlbug> thoroughly before
 using it to submit a bug report.
 
+=item L<perlthanks|perlthanks>
+
+This program provides an easy way to send a thank-you message back to the
+authors and maintainers of perl. It's just F<perlbug> installed under
+another name.
+
 =item L<h2ph|h2ph>
 
 Back before Perl had the XS system for connecting with C libraries,
@@ -212,7 +218,7 @@ for more information.
 
 =item L<prove>
 
-F<prove> is a command-line interface to the test-running functionality of
+F<prove> is a command-line interface to the test-running functionality
 of F<Test::Harness>.  It's an alternative to C<make test>.
 
 =item L<corelist>
@@ -243,7 +249,14 @@ 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 extracted
-archive and an unextracted one.
+archive and an unextracted one. (Note that this utility requires the
+C<Text::Diff> module to function properly; this module isn't distributed
+with perl, but is available from the CPAN.)
+
+=item L<ptargrep>
+
+F<ptargrep> is a utility to apply pattern matching to the contents of files 
+in a tar archive.
 
 =item L<shasum>