Skip to content

Instantly share code, notes, and snippets.

@petruisfan
Created December 23, 2015 12:05
Show Gist options
  • Save petruisfan/b0e57db048483a69e81e to your computer and use it in GitHub Desktop.
Save petruisfan/b0e57db048483a69e81e to your computer and use it in GitHub Desktop.
Minimal replacement for autoenv. Add to you *rc file
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