Contents
- UNIX
- Windows
- サーバ
- プログラミング言語
- データベース
- プロトコル
- サービス
- オープンソース
- 規格・技術
- アプリケーション
- PC
- DEVICE
- その他(未分類)
お問合せ: メールフォーム
例えば、apache のアクセスログが知らないうちにどんどん増え続ける恐怖から開放されます。
0 1 * * * root cd /path/to/log/apache/access_log && ls -1t | awk 'NR>31' | xargs -r rm -f
0 1 * * * root find /var/log/apache -maxdepth 1 -name 'access_log*' | sort -r | awk 'NR>31' | xargs -r rm -f
/var/log/apache ディレクトリ配下に、さらにディレクトリがある場合は -maxdepth オプションも。