summaryrefslogtreecommitdiff
path: root/pod/perlmodlib.PL
diff options
context:
space:
mode:
authorCasey West <casey@geeknest.com>2003-04-23 10:03:20 -0400
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-04-23 20:20:58 +0000
commita4373870b404ad399ffc74d3c253b331a8999454 (patch)
tree4fe9c75131771fa53f8df4cff80c8bf7584628ab /pod/perlmodlib.PL
parent14c715f4b6c64150f14ac20a4fb26a4977a19aa3 (diff)
downloadperl-a4373870b404ad399ffc74d3c253b331a8999454.tar.gz
Re: [PATCH] [perl #18055] Clarify for bug resolution.
Message-ID: <20030423180320.GZ15574@geeknest.com> p4raw-id: //depot/perl@19320
Diffstat (limited to 'pod/perlmodlib.PL')
-rw-r--r--pod/perlmodlib.PL7
1 files changed, 5 insertions, 2 deletions
diff --git a/pod/perlmodlib.PL b/pod/perlmodlib.PL
index 1dd79180bc..4f21ca441d 100644
--- a/pod/perlmodlib.PL
+++ b/pod/perlmodlib.PL
@@ -147,9 +147,12 @@ print OUT <<'EOF';
To find out I<all> modules installed on your system, including
those without documentation or outside the standard release,
-just do this:
+just use the following command (under the default win32 shell,
+double quotes should be used instead of single quotes).
- % find `perl -Te 'print "@INC"'` -name '*.pm' -print
+ % perl -MFile::Find=find -MFile::Spec::Functions -Tlwe \
+ 'find { wanted => sub { print canonpath $_ if /\.pm\z/ },
+ no_chdir => 1 }, @INC'
(The -T is here to prevent '.' from being listed in @INC.)
They should all have their own documentation installed and accessible