Skip to content

Instantly share code, notes, and snippets.

@pokka
Created March 17, 2016 03:08
Show Gist options
  • Save pokka/83d5631856ae844c9100 to your computer and use it in GitHub Desktop.
Save pokka/83d5631856ae844c9100 to your computer and use it in GitHub Desktop.
finding-the-largest-files-directories
find . -type d -print0 | xargs -0 du | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {}
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