depth深度

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