Skip to content

Instantly share code, notes, and snippets.

@dcbark01
Last active December 16, 2024 22:41
Show Gist options
  • Save dcbark01/760b17a38701ed2c02e016d8e15f1b29 to your computer and use it in GitHub Desktop.
Save dcbark01/760b17a38701ed2c02e016d8e15f1b29 to your computer and use it in GitHub Desktop.
File/dir size
# 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