mirror of
https://gitee.com/mirrors/Spring-Cloud-Alibaba.git
synced 2021-06-26 13:25:11 +08:00
8 lines
124 B
Bash
8 lines
124 B
Bash
#!/usr/bin/env bash
|
|
n=1
|
|
while [ $n -le 10 ]
|
|
do
|
|
echo `curl -s http://localhost:18083/divide-feign2?a=1`
|
|
let n++
|
|
done
|