summaryrefslogtreecommitdiff
path: root/pod/perlrun.pod
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2003-12-30 17:14:44 +0000
committerDave Mitchell <davem@fdisolutions.com>2003-12-30 17:14:44 +0000
commit9976c5c751353b29ac7e09170124d707dcdf8151 (patch)
tree96009252c303f73541b25f378d683c0b47f4c75f /pod/perlrun.pod
parent3a427a117ca05296a5c3d5d88415dc040792253b (diff)
downloadperl-9976c5c751353b29ac7e09170124d707dcdf8151.tar.gz
bug #24757 perlrun.pod's description of find -mtime was ambiguous
p4raw-id: //depot/perl@22009
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r--pod/perlrun.pod3
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod
index fd9d9a29fc..551bbcb187 100644
--- a/pod/perlrun.pod
+++ b/pod/perlrun.pod
@@ -605,7 +605,8 @@ Note that the lines are not printed by default. See B<-p> to have
lines printed. If a file named by an argument cannot be opened for
some reason, Perl warns you about it and moves on to the next file.
-Here is an efficient way to delete all files older than a week:
+Here is an efficient way to delete all files that haven't been modifed for
+at least a week:
find . -mtime +7 -print | perl -nle unlink