Skip to content

Instantly share code, notes, and snippets.

@iamajeesh
Last active December 27, 2015 07:59
Show Gist options
  • Save iamajeesh/7292746 to your computer and use it in GitHub Desktop.
Save iamajeesh/7292746 to your computer and use it in GitHub Desktop.
Find The Largest Top 10 Files and Directories On a Linux / UNIX / BSD
# For UBUNTU
du -a /var | sort -n -r | head -n
# CD foldername
du -hsx * | sort -rh | head -10
# For CENTOS
for i in G M K; do du -ah | grep [0-9]$i | sort -nr -k 1; done | head -n 11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment