码迷,mamicode.com
首页 > Web开发 > 详细

Linux 服务器使用shell脚本 实现 间隔N秒访问url

时间:2020-02-24 16:53:11      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:linux服务   shel   添加   bin   linux   color   脚本   com   linux服务器   

#!/bin/bash
n=0
max=11
while(($n<max))
do
        curl -sS --connect-timeout 1000 -m 60000 http://wx.com/inex‘ //访问url
        n=($n+1)
        sleep 5
done

脚本写好后将添加到linux服务器计划任务中,设置成1分钟执行一次即可

Linux 服务器使用shell脚本 实现 间隔N秒访问url

标签:linux服务   shel   添加   bin   linux   color   脚本   com   linux服务器   

原文地址:https://www.cnblogs.com/pxjbk/p/12357510.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!