#!/bin/bash ## # Change the boot device of a vm # # wildcat - 2009 ## if [ $# -ne 2 ]; then echo "$0 "; exit 42; fi VBoxManage modifyvm ${1} --boot1 ${2} > /dev/null 2>&1