#!/bin/bash step=5 #间隔的秒数,不能大于60 for (( i = 0; i < 60; i=(i+step) )); do $(curl 'http://47.104.128.143/cron/pk/index') sleep $step done exit 0