Skip to content

Instantly share code, notes, and snippets.

@jonalvarezz
Last active August 29, 2015 14:11
Show Gist options
  • Save jonalvarezz/af1a3e84b8c3899b4571 to your computer and use it in GitHub Desktop.
Save jonalvarezz/af1a3e84b8c3899b4571 to your computer and use it in GitHub Desktop.
Get top 5 directories in terms of space used
# From: http://stackoverflow.com/questions/23393284/how-to-check-which-directory-is-occupying-more-space-on-a-unix-machine
du -k -d1 /path/to/directory | sort -rn | head -5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment