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 "Start M6 VM..."
0009 VBoxManage startvm M6
0010 
0011 echo "Start M7 VM..."
0012 VBoxManage startvm M7
0013 
0014 echo "Start MX VM..."
0015 VBoxManage startvm MX
0016 
0017 echo "All VM started."
0018 
0019 exit 0