Skip to content

Instantly share code, notes, and snippets.

@bibliotechy
Created March 25, 2013 16:42
Show Gist options
  • Save bibliotechy/5238549 to your computer and use it in GitHub Desktop.
Save bibliotechy/5238549 to your computer and use it in GitHub Desktop.
the other bash profile
VIMDIR="$HOME/AppData/Local/Temp/Temp1_vim73-x64.zip/vim73"
DevKit="/c/DevKit/bin"
MingW="/c/DevKit/mingw/bin"
rsync="/c/rsync"
ssh="/c/cygwin-ssh/ssh"
PATH="$ssh:$rsync:$VIMDIR:$PATH:$DevKit:$MingW"
export PATH
# Aliases
box="vagrant@10.10.10.2"
key="~/.vagrant.d/insecure_private_key"
solo="knife solo"
librarian="librarian-chef"
alias librarian="$librarian"
alias cook="librarian install && $solo cook -VV $box -i $key"
alias prepare="librarian install && $solo prepare -VV $box -i $key"
alias clean="$solo clean $box -i $key"
alias up="vagrant up"
alias down="vagrant halt"
alias login="ssh vagrant@10.10.10.2 -i $key"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment