「 月別アーカイブ:2017年06月 」 一覧

no image

tmpwatchで古いファイルを探して消す

2017/06/23   -Command

あるログファイルがたまっていくディレクトリで、30日(720時間)以上前の更新日のファイルを削除する。 $ tmpwatch -m 720 /path/to/log

no image

findで古いファイルを探して消す

2017/06/23   -Command
 

90日以上前の更新日のファイルを削除する場合 $ find /path/to/target/directory -mtime +90 -type f -exec rm -rf {} \; tmpwat …

no image

findで更新の条件で古いファイルや新しいファイルを探す

2017/06/23   -Command
 

・更新日が3日前より新しい(現在時間〜72時間前) $ find . -mtime -3 ・更新日がちょうど3日前(72時間前〜96時間前) $ find . -mtime 3 ・更新日が3日前より古 …

no image

findで所有者がrootのファイルを探す

2017/06/22   -Command
 

findは様々な条件でファイルを検索できる。 所有者で検索も可能. $ find . -user root 所有者がrootのファイルを探すことができる。

no image

grepで”マッチしない”行を探す

2017/06/22   -Command
 

grep コマンドで、「マッチする行」を探すには抗します。 $ grep ‘Mozilla’ /var/log/apache2/access.log マッチしない行を探すときは -v オプションを使い …