今天处理一台服务器,其中一个800G的盘都满了,使用rm命令完全不好使,因为文件量太大了,几千万上亿个文件;
使用
find ./ -type f -delete
或者
find ./ -type f | xargs rm -f
find ./ -type f -print -exec rm -f {} \;
正文完
今天处理一台服务器,其中一个800G的盘都满了,使用rm命令完全不好使,因为文件量太大了,几千万上亿个文件;
使用
find ./ -type f -delete
或者
find ./ -type f | xargs rm -f
find ./ -type f -print -exec rm -f {} \;