mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
9 lines
182 B
Bash
Executable File
9 lines
182 B
Bash
Executable File
x=$1
|
|
y=$2
|
|
|
|
for i in `seq $x $y`
|
|
do
|
|
start_vm="GET http://127.0.0.1:8096/client/?command=startVirtualMachine&id=$i HTTP/1.0\n\n"
|
|
echo -e $start_vm | nc -v -q 60 127.0.0.1 8096
|
|
done
|