From efb04bdf6c262e056ca16c784cbd991aa3f9d17f Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Tue, 26 Apr 2022 16:56:24 +0200 Subject: [PATCH] Run virt-viewers in parallel --- manage_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage_all.sh b/manage_all.sh index ae4c59f..059018d 100755 --- a/manage_all.sh +++ b/manage_all.sh @@ -11,7 +11,7 @@ for vm in output/*/; do echo system_powerdown | ncat -U "$vm/monitor.sock" ;; 'attach') - remote-viewer "spice+unix://./$vm/spice.sock" + remote-viewer "spice+unix://./$vm/spice.sock" & ;; *) echo >&2 "Usage: $0 (start | stop | attach)"