Created
August 23, 2017 22:17
-
-
Save mkouhei/5d9cd30627f8e983d7ba3fa41ed7a8aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh -e | |
| vmname=$1 | |
| VBoxManage showvminfo $vmname | grep State: | grep -q 'powered off' || ( echo "VM: $vmname is not powered off." ; exit 1 ) | |
| VBoxManage startvm $vmname --type gui | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment