Created
September 10, 2017 22:12
-
-
Save rawrgulmuffins/a1d38e2f514e38cefc9e8e2cbafafa38 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
source /usr/local/bin/virtualenvwrapper.sh | |
list_of_names=$(lsvirtualenv) | |
for name in $list_of_names | |
do | |
rmvirtualenv $name | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment