4 lines
88 B
Bash
4 lines
88 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for i in $(virsh list --all --name --autostart); do virsh start "$i"; done
|