Skip to content

Instantly share code, notes, and snippets.

@jasonmccallister
Created July 31, 2015 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonmccallister/058e9b22a4cfed53560c to your computer and use it in GitHub Desktop.
Save jasonmccallister/058e9b22a4cfed53560c to your computer and use it in GitHub Desktop.
vmup()
{
cd ~/Homestead;
vagrant up;
cd ~/Code;
}
vmssh() {
cd ~/Homestead && vagrant ssh;
}
vmdown()
{
cd ~/Homestead;
vagrant suspend;
cd ~/Code;
}
vmhalt()
{
cd ~/Homestead;
vagrant halt;
cd ~/Code;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment