libvirt: command to start up all guest virtual machines which have auto-start enabled
Like @jason-harris solution. But simpler and start only marked for autostart.
for i in $(virsh list --name --autostart); do virsh start $i; done
UPD: I tested it on libvirt 3.2.0 (CentOS 7.4.1708)