To find the folder with most files or inodes run the following command:

find / -xdev -printf '%h\n' | sort | uniq -c | sort -k 1 -n

You can change / to any folder you wish.

這篇文章有幫助嗎? 0 用戶發現這個有用 (1 投票)