Skip to content

Instantly share code, notes, and snippets.

@eraclitux
Last active November 7, 2022 15:22
Show Gist options
  • Select an option

  • Save eraclitux/f197470dcaa19355c9b2 to your computer and use it in GitHub Desktop.

Select an option

Save eraclitux/f197470dcaa19355c9b2 to your computer and use it in GitHub Desktop.
Find dirs with many files
#In case of 100% of inode usage you simply copy and paste this snippet to find directories with more files
find / -xdev -type f | cut -d "/" -f 2,3 | sort | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment