zsh/vagrant.zsh @ 5ddfd5a61ea1

Update with various crap from the past few weeks.
author Steve Losh <steve@stevelosh.com>
date Thu, 13 Jun 2013 10:44:08 -0400
parents 119223f86582
children (none)
alias v='vagrant'
alias vs='vagrant suspend'
alias vp='vagrant provision'
alias vu='vagrant up'
alias vh='vagrant halt'
alias vss='vagrant ssh'

function turnoffthedamnboxvagrant () {
    VBoxManage list vms | grep "$1" | cut -d' ' -f1 | tr -d '"\n ' | xargs -0 -I BOX VBoxManage controlvm BOX poweroff
}

alias biv='bcvi --install vagrant'