Following
command will list complete inode usage from different folders with in
the present working directory:
echo
"Detailed Inode usage for: $(pwd)" ; for d in `find
-maxdepth 1 -type d |cut -d\/ -f2 |grep -xv . |sort`; do c=$(find $d
|wc -l) ; printf "$c\t\t- $d\n" ; done ; printf "Total:
\t\t$(find $(pwd) | wc -l)\n"
No comments:
Post a Comment