原创

cron+shell命令,定时30秒执行一次

1. crontab -e

# 每分钟执行一次

*/1 * * * * /bin/sh /app/test.sh


2. cat test.sh

#!/bin/bash

# 1分钟内,每隔30秒执行一次

step=30

for((i=0;i<60;i=(i+step)));do

  echo `curl http://hb.ete56.com/public/api/index/queryPoints?someword=HsyeGSCAPAkpHoSJ`

  sleep $step

done;

exit 0


正文到此结束
该篇文章的评论功能已被站长关闭
本文目录