使うときは path to dir を自分の環境のものに置き換えてください
7日より古い通常ファイルを再帰削除
find /path/to/dir -type f -mtime +7 -print # ドライラン find /path/to/dir -type f -mtime +7 -delete # 実行
ある“日時”より古い
# 例: 2025-10-01 00:00 以前 find /path/to/dir -type f ! -newermt "2025-10-01 00:00" -print find /path/to/dir -type f ! -newermt "2025-10-01 00:00" -delete
ランキング参加中です
↓クリックしていただけると嬉しいです〜