zsh/vagrant.zsh @ 7a0cc0c0465c

Add a placeholder for the Mutt temp directory.
author Steve Losh <steve@stevelosh.com>
date Thu, 22 Sep 2011 18:11:02 -0400
parents 674a2eac7716
children 72ed0a7f6ea9
alias v='vagrant'
alias vs='vagrant suspend'
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
}