From: Dave Mitchell Date: Tue, 30 Dec 2003 17:14:44 +0000 (+0000) Subject: bug #24757 perlrun.pod's description of find -mtime was ambiguous X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9976c5c751353b29ac7e09170124d707dcdf8151;p=p5sagit%2Fp5-mst-13.2.git bug #24757 perlrun.pod's description of find -mtime was ambiguous p4raw-id: //depot/perl@22009 --- diff --git a/pod/perlrun.pod b/pod/perlrun.pod index fd9d9a2..551bbcb 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