Created
December 23, 2015 12:05
-
-
Save petruisfan/b0e57db048483a69e81e to your computer and use it in GitHub Desktop.
Minimal replacement for autoenv. Add to you *rc file
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
function cd_replace { | |
builtin cd $1 | |
if [[ -e .env ]]; then | |
echo "source .env" | |
source .env | |
fi | |
} | |
alias cd="cd_replace" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment