summaryrefslogtreecommitdiff
path: root/pod/perlfaq5.pod
diff options
context:
space:
mode:
authorJonathan Stowe <gellyfish@gellyfish.com>2001-06-25 15:39:43 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-25 14:11:59 +0000
commitd6260402f46894f93a4378ad66e7f8648172b889 (patch)
tree5801a3d34ac4d152564536f7eff67bcfc686aac2 /pod/perlfaq5.pod
parente0d088d0e81f017f3713823b3f066f49ef286b80 (diff)
downloadperl-d6260402f46894f93a4378ad66e7f8648172b889.tar.gz
Re: [ID 20010625.003] perlfaq5 correction
Message-ID: <Pine.LNX.4.33.0106251438080.14795-100000@orpheus.gellyfish.com> p4raw-id: //depot/perl@10927
Diffstat (limited to 'pod/perlfaq5.pod')
-rw-r--r--pod/perlfaq5.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq5.pod b/pod/perlfaq5.pod
index dde1feac4d..5061f6960c 100644
--- a/pod/perlfaq5.pod
+++ b/pod/perlfaq5.pod
@@ -469,7 +469,7 @@ whatever:
Use the <> (glob()) operator, documented in L<perlfunc>. Older
versions of Perl require that you have a shell installed that groks
tildes. Recent perl versions have this feature built in. The
-Glob::KGlob module (available from CPAN) gives more portable glob
+File::KGlob module (available from CPAN) gives more portable glob
functionality.
Within Perl, you may use this directly:
@@ -569,7 +569,7 @@ C<Argument list too long>. People who installed tcsh as csh won't
have this problem, but their users may be surprised by it.
To get around this, either upgrade to Perl v5.6.0 or later, do the glob
-yourself with readdir() and patterns, or use a module like Glob::KGlob,
+yourself with readdir() and patterns, or use a module like File::KGlob,
one that doesn't use the shell to do globbing.
=head2 Is there a leak/bug in glob()?