Skip to content

Instantly share code, notes, and snippets.

@atton
Created December 13, 2012 11:09
Show Gist options
  • Save atton/4275788 to your computer and use it in GitHub Desktop.
Save atton/4275788 to your computer and use it in GitHub Desktop.
custom cd in zsh
function cd() {
if [ $# -eq 0 ]; then
builtin pushd $HOME
else
builtin cd $@
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment