This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
bug #24757 perlrun.pod's description of find -mtime was ambiguous
authorDave Mitchell <davem@fdisolutions.com>
Tue, 30 Dec 2003 17:14:44 +0000 (17:14 +0000)
committerDave Mitchell <davem@fdisolutions.com>
Tue, 30 Dec 2003 17:14:44 +0000 (17:14 +0000)
p4raw-id: //depot/perl@22009

pod/perlrun.pod

index fd9d9a2..551bbcb 100644 (file)
@@ -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