Advertisement
tribulant

Check Inode Usage

Jun 4th, 2012
494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.14 KB | None | 0 0
  1. find -maxdepth 1 -mindepth 1 -type d |while read dir ; do echo -n "$dir - " ; find "$dir" |wc -l; done|sed 's|^./||'|column -t|sort -rnk3|head -n10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement