#!/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分钟执行一次即可

相关文章:

  • 2021-08-02
  • 2021-12-18
  • 2021-12-06
  • 2021-08-27
  • 2022-12-23
  • 2022-12-23
  • 2022-02-01
猜你喜欢
  • 2021-10-16
  • 2022-12-23
  • 2022-12-23
  • 2021-07-31
  • 2022-02-15
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案