LoginSignup
0
0

More than 5 years have passed since last update.

Perl で古いログ・ファイルから4つ削除する

Last updated at Posted at 2013-04-15
# 古いログ・ファイルから4つ削除する
unlink @f = (
         map  { $_->[0] }
         sort { $b->[1] <=> $a->[1] }
         map  { [$_, -M] } <*.log>
       ) [0..3];
0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0