UNIXで5日以上古いファイルを削除する(タイムスタンプではなくファイル名の日付)

UNIXで5日以上古いファイルを削除する(タイムスタンプではなくファイル名の日付)

ディレクトリから5日以上経過したログファイルを削除したいと思います。ただし、削除はファイルのタイムスタンプに基づいてはいけません。ファイル名に基づいてください。たとえば、今日の日付は2012年7月5日で、ディレクトリには、などABC_20120430.logというABC_20120429.log名前の10個のファイルが含まれています。ファイル名から日付を抽出してこれらのファイルを削除できるようにしたいですABC_20120502.logABC_20120320.log

答え1

私は@oHesslingだと思います。ほぼそこは:lsを解析しないでください、bashでより多くのことができます:

four_days=$(date -d "4 days ago" +%Y%m%d)
for f in ABC_[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9].log; do
  date=${f#ABC_}
  date=${date%.log}
  (( $date < $four_days )) && rm "$f"
done

答え2

ファイル名ベースの日付:

THRESHOLD=$(date -d "5 days ago" +%Y%m%d)
ls -1 ABC_????????.log | 
  sed 'h;s/[_.]/ /g;G;s/\n/ /' | 
  while read A DATE B FILE
  do 
     [[ $DATE -le $THRESHOLD ]] && rm -v $FILE
  done

答え3

それを使用する1つの方法perl

コンテンツscript.pl:

use warnings;
use strict;
use Time::Local qw/timelocal/;
use File::Spec;

## Process all input files.
while ( my $file = shift @ARGV ) { 

    ## Remove last '\n'.
    chomp $file;

    ## Extract date from file name.
    my ($date) = $file =~ m/.*_([^.]+)/ or next;

    ## Extract year, month and day from date.
    my ($y,$m,$d) = $date =~ m/(\d{4})(\d{2})(\d{2})/ or next;

    ## Get date in seconds.
    my $time = timelocal 0, 0, 0, $d, $m - 1, $y - 1900 or next;

    ## Get date in seconds five days ago.
    my $time_5_days_ago = time - 5 * 24 * 3600;

    ## Substract them, and if it is older delete it and print the
    ## event.
    if ( $time - $time_5_days_ago < 0 ) { 
        unlink File::Spec->rel2abs( $file ) and printf qq[%s\n], qq[File $file deleted];
    }   
}

テストするためにいくつかのファイルを作成しました。

touch ABC_20120430.log ABC_20120502.log ABC_20120320.log ABC_20120508.log ABC_20120509.log

一度見てくださいls -1

ABC_20120320.log                                                                                                                                                                                                                             
ABC_20120430.log                                                                                                                                                                                                                             
ABC_20120502.log                                                                                                                                                                                                                             
ABC_20120508.log                                                                                                                                                                                                                             
ABC_20120509.log                                                                                                                                                                                                                             
script.pl

次のようにスクリプトを実行します。

perl script.pl *.log

次の出力に:

File ABC_20120320.log deleted
File ABC_20120430.log deleted
File ABC_20120502.log deleted

答え4

あなたができることは、ファイル名が時系列でソートされるという事実を利用することです。たとえば、最後の5つのファイルを保持するには、次のようにします。

ls ABC_????????.log | head -n-5 | xargs rm

関連情報