Files
virtualbox/test/stop.sh
2022-04-22 10:11:56 +02:00

24 lines
400 B
Bash
Executable File

#!/bin/bash
#
# @Branislav Zeljak v0.1
#
# Stop given VBox
clear
VBoxManage list vms
read -p "Wievile VMs sollen gestartet werden?: " VAR_QUAN
read -p "Praefix in der VBox [ubu]: " VAR_NAME
# Variablen:
IFS="
"
VAR_VB="${HOME}/VirtualBox VMs"
VAR_VDI="${HOME}/VirtualBox VMs/VDI/ubu2004_master.vdi"
# Schleife
for N in $(seq 1 $VAR_QUAN)
do
VBoxManage controlvm ${VAR_NAME}-${N} poweroff
done