ファイルが多すぎてrmできないときの対処法

2014-12-26

logrotateミスって大量のファイルが出来てしまった...
find -execを使う。

$ find . -type f -exec rm -fv {} \;
#Linux