Skip to content

Instantly share code, notes, and snippets.

@davidalexander
Created July 16, 2011 15:17
Show Gist options
  • Save davidalexander/1086437 to your computer and use it in GitHub Desktop.
Save davidalexander/1086437 to your computer and use it in GitHub Desktop.
Shell command to find size of folder
# single folder
du -sh [FOLDERNAME]/
# subfolders
du --max-depth=1 [FOLDERNAME]/ | sort -n -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment