Skip to content

Instantly share code, notes, and snippets.

@kgantsov
Created June 11, 2021 11:40
Show Gist options
  • Save kgantsov/6b91b88b51e3a5b118d29892a3499557 to your computer and use it in GitHub Desktop.
Save kgantsov/6b91b88b51e3a5b118d29892a3499557 to your computer and use it in GitHub Desktop.
Find python's virtualenv directories and display them along with size
# simple script that finds all python virtualenv folders and shows how much
# space they are taking byt running `du -sh` command on each of the found directory
sudo find ~ -type d \( -name env -o -name venv \) -exec du -sh {} \; 2>/dev/null
@kgantsov
Copy link
Author

Make the gist public

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment