du、tree、find
ls -li
find ./ -inum 1193220 | while read a ;do rm -f $a;done
find ./ -size 0b -type f -maxdepth 1 |while read a ;do rm -f $a;done
du -s * | sort -nrk1 | head -n 10
转载于:https://www.cnblogs.com/tengfei520/p/8258726.html
相关资源:JAVA上百实例源码以及开源项目