buy tb-500

check Inodes

use this command for Inodes total
find * | wc -l

use this command to find which folder have max Inodes
for d in *; do echo -n “$d: “; find $d -type f | wc -l; done | sort -nk2 | tail -20

Leave a Reply