File indexing completed on 2025-01-05 04:00:16
0001 #!/bin/bash 0002 0003 # SPDX-FileCopyrightText: 2008-2024 by Gilles Caulier, <caulier dot gilles at gmail dot com> 0004 # 0005 # SPDX-License-Identifier: BSD-3-Clause 0006 # 0007 0008 echo "Save M6 VM..." 0009 VBoxManage controlvm M6 savestate 0010 0011 echo "Save M7 VM..." 0012 VBoxManage controlvm M7 savestate 0013 0014 echo "Save MX VM..." 0015 VBoxManage controlvm MX savestate 0016 0017 echo "All VM saved." 0018 0019 exit 0