Skip to content

Instantly share code, notes, and snippets.

@athaller
Forked from mig5/gist:a89af7d113f403521cd7
Created January 22, 2016 17:35
Show Gist options
  • Save athaller/3a03e14eacbac028ef36 to your computer and use it in GitHub Desktop.
Save athaller/3a03e14eacbac028ef36 to your computer and use it in GitHub Desktop.
Bring Vagrant VM up if it's off and you tried to vagrant ssh
vagrant() {
if [[ $@ == "ssh" ]]; then
command vagrant ssh || command vagrant up && command vagrant ssh
else
command vagrant $@
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment