mirror of
https://github.com/alibaba/arthas.git
synced 2024-04-21 10:21:39 +00:00
21 lines
244 B
Bash
Executable File
21 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sum=0
|
|
i=1
|
|
while(( i <= 100 ))
|
|
do
|
|
let "i += 1"
|
|
curl -XPOST http://localhost:8563/api -d @<(cat << EOF
|
|
{
|
|
"action": "pull_results",
|
|
"sessionId":"$1",
|
|
"consumerId": "$2"
|
|
}
|
|
EOF)
|
|
|
|
echo ""
|
|
|
|
done
|
|
|
|
echo "count=$i"
|