Create live-image for Grit OS

vm-stop-all 193B

12345678
  1. #!/bin/bash
  2. # Check for any virtual machines running and save them.
  3. for uuid in $( VBoxManage list runningvms | awk 'BEGIN{FS="\" "}{print $2}' )
  4. do
  5. VBoxManage controlvm $uuid savestate
  6. done