Skip to content

Instantly share code, notes, and snippets.

@frhd
Created September 25, 2014 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frhd/4c8e91104ebc61189390 to your computer and use it in GitHub Desktop.
Save frhd/4c8e91104ebc61189390 to your computer and use it in GitHub Desktop.
linux directory size queries
# total size of current dir
du -hs
# total size of all level 1 directories in current dir
du -h --max-depth=1 | sort -n | grep M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment