Last active
December 12, 2015 04:28
-
-
Save obazoud/4714614 to your computer and use it in GitHub Desktop.
This file contains 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/bash | |
for vm in `VBoxManage list runningvms | awk '{ print $1 }' | sed "s/\"//g"`; do | |
VBoxManage controlvm "$vm" poweroff | |
done | |
for vm in `VBoxManage list vms | awk '{ print $1 }' | sed "s/\"//g"`; do | |
VBoxManage unregistervm --delete "$vm" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment