Below command will display the detailed inode usage of current directory
[bash]
root@server1 [~]# echo "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"
Inode usage for: /root
6 – .cpan
58 – .cpanel
3 – cpanel3-skel
9 – .cpobjcache
1 – cprestore
166 – csf
6 – .gnupg
5 – .HttpRequest
73 – .MirrorSearch
1 – perl5
1 – public_ftp
2 – public_html
4 – .spamassassin
1 – .ssh
122 – tmp
Total: 484
root@server1 [~]#
[/bash]
Leave a Reply