Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jeansymolanza/e64664c942db8b2b2f45865d77d0beef to your computer and use it in GitHub Desktop.
Save jeansymolanza/e64664c942db8b2b2f45865d77d0beef to your computer and use it in GitHub Desktop.
for dir in /path/to/directory/*; do [ -d "$dir" ] && echo "Folder: $dir" && echo "Size: $(du -sh "$dir" | awk '{print $1}')"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment