7 lines
191 B
Bash
Executable File
7 lines
191 B
Bash
Executable File
#!/bin/sh
|
|
# list vnc display ports for all active VM
|
|
virsh list --state-running --name | \
|
|
while read vm; \
|
|
do [ -n "$vm" ] && virsh suspend $vm && echo "Suspended : $vm"; \
|
|
done | column -t
|