Skip to content

Instantly share code, notes, and snippets.

@5kr1p7
Created June 16, 2020 07:44
Show Gist options
  • Save 5kr1p7/9ef9ea6137b59872b4526417b293ae42 to your computer and use it in GitHub Desktop.
Save 5kr1p7/9ef9ea6137b59872b4526417b293ae42 to your computer and use it in GitHub Desktop.
Find which dir has many inodes
#!/bin/bash
find . -xdev -printf '%h\n' | sort | uniq -c | sort -k 1 -nr | head -30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment