Skip to content

Instantly share code, notes, and snippets.

@jpalala
Created July 27, 2015 02:26
Show Gist options
  • Save jpalala/0f1c9dbbdd54d0c1c14a to your computer and use it in GitHub Desktop.
Save jpalala/0f1c9dbbdd54d0c1c14a to your computer and use it in GitHub Desktop.
my first oh-my-zsh plugin to go to homedir/
qcd() {
if (( $# == 0 ))
then echo "Usage cdv <dir> = cd /Users/webdev23/<dir>"
else
cd /Users/webdev23/$1
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment