#!/bin/bash ROOT=$(cd `dirname $0`/../../; pwd) source $ROOT/shell/manage/common.sh #sleep second sleepTime=1 i=1 count=100 while(($i<$count)) do echo [$i] curl http://$HOST:$PORT/api/v1/manage/statistic echo "end" i=$(($i+1)) sleep $sleepTime done