# 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