Skip to content

Instantly share code, notes, and snippets.

@raghur
Created September 12, 2017 03:07
Show Gist options
  • Save raghur/71809c7e584d826eb5a49baae09cf5a1 to your computer and use it in GitHub Desktop.
Save raghur/71809c7e584d826eb5a49baae09cf5a1 to your computer and use it in GitHub Desktop.
find top 10 most space consuming folders inside a folder.
find -maxdepth 1 -path './*' -type 'd' -print0 |xargs -0 du -hs |sort -hr |head -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment