crontab每秒执行URL接口

Posted 讲做

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了crontab每秒执行URL接口相关的知识,希望对你有一定的参考价值。

首先crontab -e打开进行编辑

添加以下代码(默认为每秒执行一次脚本crontab.sh):

* * * * * /bin/sh /var/www/aa/crontab.sh

下面是/var/www/aa/crontab.sh脚本代码

#!/bin/bash

i=0;
step=2 #间隔的秒数,不能大于60
while [ $i -lt 60 ]
do
$(curl ‘http://api-test-monitor.shanxinhui.com/user/test2/aa‘)
sleep $step
i=`expr $i + 2`
done

exit 0

以上是关于crontab每秒执行URL接口的主要内容,如果未能解决你的问题,请参考以下文章

linux crontab 每秒执行定时任务

linux crontab 实现每秒执行的实例

centos 8利用crontab设置定时任务,crontab每秒运行

linux里面如何利用crontab 和 notify-send ,实现每秒钟发送一次通知到桌面?

#yyds干货盘点#crontab介绍安装及每秒运行

如何用crontab每5分钟执行一次