diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2003-12-30 17:14:44 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2003-12-30 17:14:44 +0000 |
commit | 9976c5c751353b29ac7e09170124d707dcdf8151 (patch) | |
tree | 96009252c303f73541b25f378d683c0b47f4c75f /pod/perlrun.pod | |
parent | 3a427a117ca05296a5c3d5d88415dc040792253b (diff) | |
download | perl-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.pod | 3 |
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 |