#查看索引 df -i #查找inodes多的目录 for i in /*; do echo $i; find $i |wc -l ;done #太多文件的话可以分段删除 cd xxx # xxx是你的目录 ls | xargs -n 500 rm -f
#查看索引 df -i #查找inodes多的目录 for i in /*; do echo $i; find $i |wc -l ;done #太多文件的话可以分段删除 cd xxx # xxx是你的目录 ls | xargs -n 500 rm -f