Created
June 11, 2021 11:40
-
-
Save kgantsov/6b91b88b51e3a5b118d29892a3499557 to your computer and use it in GitHub Desktop.
Revisions
-
kgantsov created this gist
Jun 11, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ # 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