Skip to content

Instantly share code, notes, and snippets.

View CoreyTrombley's full-sized avatar
💾
Save the floppy

Corey Trombley CoreyTrombley

💾
Save the floppy
View GitHub Profile
function vpause () {
VBoxManage list vms | grep "$1" | cut -d' ' -f1 | tr -d '"\n ' | xargs -0 -I BOX VBoxManage controlvm BOX pause
}
function vresume () {
VBoxManage list vms | grep "$1" | cut -d' ' -f1 | tr -d '"\n ' | xargs -0 -I BOX VBoxManage controlvm BOX resume
}
function vrunning () {