#!/bin/sh

for vm in `virsh list --name --all`; do
	echo "VNC settings for VM \"$vm\":"
	virsh dumpxml $vm | grep vnc
done
