diff options
author | Richard Soderberg <p5-authors@crystalflame.net> | 2004-11-12 16:14:49 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2004-11-12 20:47:19 +0000 |
commit | fa11829f4b6d56533794dd127f3d1068d9593670 (patch) | |
tree | 7f368b0c4f3bed68b378d9fea31eee156223ea2c /pod/perlrun.pod | |
parent | ac7de224d1cdf1bc265fb1a3311a78c903d66ee7 (diff) | |
download | perl-fa11829f4b6d56533794dd127f3d1068d9593670.tar.gz |
[perl #32419] Spelling fixes for perl@23492
From: Richard Soderberg (via RT) <perlbug-followup@perl.org>
Message-ID: <rt-3.0.11-32419-100173.13.0717895191322@perl.org>
p4raw-id: //depot/perl@23496
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r-- | pod/perlrun.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod index 1d0d55b335..029b09bbba 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -616,7 +616,7 @@ 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 that haven't been modifed for +Here is an efficient way to delete all files that haven't been modified for at least a week: find . -mtime +7 -print | perl -nle unlink |