Last active
July 25, 2018 09:26
-
-
Save kenvontucky/a2d99165e1fbc708da9bb650c9a3269f to your computer and use it in GitHub Desktop.
This file contains 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
cd () { | |
command cd $1; | |
if [ -d "python-virtual-env" ]; then | |
source python-virtual-env/bin/activate; | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment