Last active
July 25, 2018 09:25
-
-
Save kenvontucky/1150ddf7100e8ace1b75e156db1f9819 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 () { | |
builtin 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