Skip to content

Instantly share code, notes, and snippets.

@dogterbox
Last active February 17, 2025 04:50
Show Gist options
  • Save dogterbox/4ae720e9621c057c6dbaf9fa24397be1 to your computer and use it in GitHub Desktop.
Save dogterbox/4ae720e9621c057c6dbaf9fa24397be1 to your computer and use it in GitHub Desktop.
size of directory
ls -ad /home/username/.* | xargs -I {} du -sh {} | sort -rh
find . -maxdepth 1 -type d -exec du -sh {} \; 2>/dev/null | sort -rh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment