Last active
December 16, 2024 22:41
-
-
Save dcbark01/760b17a38701ed2c02e016d8e15f1b29 to your computer and use it in GitHub Desktop.
File/dir size
This file contains hidden or 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
# For directory | |
du -h ./ | sort -hr | head -n 10 | |
# For the largest files within a given directory and its subdirectories | |
find ./ -type f -exec du -h {} + | sort -hr | head -n 10 | |
# Find venv/.venv folders (limit recursive lookup to 4) | |
find ~/ -maxdepth 4 -type d \( -name ".venv" -o -name "venv" \) 2>/dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment