Skip to content

Instantly share code, notes, and snippets.

@rightfold
Created October 18, 2013 20:32
Show Gist options
  • Save rightfold/bef0c4ff2d931cb4cd95 to your computer and use it in GitHub Desktop.
Save rightfold/bef0c4ff2d931cb4cd95 to your computer and use it in GitHub Desktop.
$ which cd
cd () {
if [[ "x$*" = "x..." ]]
then
cd ../..
elif [[ "x$*" = "x...." ]]
then
cd ../../..
elif [[ "x$*" = "x....." ]]
then
cd ../../../..
elif [[ "x$*" = "x......" ]]
then
cd ../../../../..
elif [ -d ~/.autoenv ]
then
source ~/.autoenv/activate.sh
autoenv_cd "$@"
else
builtin cd "$@"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment