Last active
February 17, 2025 04:50
-
-
Save dogterbox/4ae720e9621c057c6dbaf9fa24397be1 to your computer and use it in GitHub Desktop.
size of directory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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