LoginSignup
9
9

More than 5 years have passed since last update.

n日以上前に作成されたファイルを削除

Posted at

たとえば、15日以上前に作成されたバックアップ("*.tar.gz")を削除する。

まずは対象を確認
$ find . -mtime +15 -name "*.tar.gz"

その後削除
$ find . -mtime +15 -name "*.tar.gz" | xargs rm
9
9
0

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
9
9