最近有一个这样的需求,需要每2秒访问一次页面,这里我想到用crontab,但crontab最小只能一分钟执行一次,但是我们可以写一个延时脚本,来实现这样的需求。
1) 增加一个脚本 crontab.sh;
[root@localhost ~]# vim /home/visionz/crontab/crontab.sh
2) crontab.sh 里面每2秒 请求一次 url ;
#!/bin/bash
step=2 #间隔的秒数,不能大于60
for (( i = 0; i < 60; i=(i+step) )); do
curl https://yooer.me #调用链接
sleep $step
done
exit 0
3) 加入计划任务 用crontab每分钟执行一次crontab.sh文件;或者使用BT面板的计划任务来运行。
下面为 crontab每分钟执行一次crontab.sh文件 命令
//编辑 crontab 文件,顺带一提,查看为 crontab -l
[root@localhost ~]# crontab -e
*/1 * * * * /bin/sh /home/visionz/crontab/crontab.sh