VMがArch linkuxのVirt Managerで実行されている間、バックグラウンドで10秒遅れた後にVMを起動してリセットする簡単なスクリプトを作成するのに役立つ人はいますか(manjaro)
答え1
#!/bin/sh
# The first and only arg is the name of the VM
[ -z "$1" ] && echo "Error: VM name was not provided" >/dev/stderr && exit 1
vm="$1"
virsh start "$vm"
sleep 10
virsh reboot "$vm"