Skip to content

Instantly share code, notes, and snippets.

@toffebjorkskog
Created January 22, 2015 07:58
Show Gist options
  • Save toffebjorkskog/4635c0775b95ad0a9068 to your computer and use it in GitHub Desktop.
Save toffebjorkskog/4635c0775b95ad0a9068 to your computer and use it in GitHub Desktop.
Find large folders on a server
cd /
find . -type f -exec du -Sh {} + | sort -rh | head -n 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment