Skip to content

Instantly share code, notes, and snippets.

@grimzy
Last active February 6, 2018 15:42
Show Gist options
  • Save grimzy/eb3955949d8addda93dca04cfd394067 to your computer and use it in GitHub Desktop.
Save grimzy/eb3955949d8addda93dca04cfd394067 to your computer and use it in GitHub Desktop.
Find largest files & directories
sudo du -a / | sort -n -r | head -n 10
sudo find / -xdev -type f -size +100M -exec du -sh {} ';' | sort -rh | head -n50
sudo find . -xdev -type f | cut -d "/" -f 2 | sort | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment