Skip to content

Instantly share code, notes, and snippets.

@revooms
Last active September 30, 2017 23:53
Show Gist options
  • Save revooms/513fd338c7acd18aade5a672490ea79b to your computer and use it in GitHub Desktop.
Save revooms/513fd338c7acd18aade5a672490ea79b to your computer and use it in GitHub Desktop.
Useful shell commands

Get 10 largest directories

find . -type d -print0 | xargs -0 du | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {}

Get 10 largest files

find . -type f -print0 | xargs -0 du | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment