每天学习一点点,每天进步一点点.
login

自动定时curl地址

2023-01-04 17:26:39  |  分类: Bash |  标签: 无 阅读(686)    评论(0)
  1. jenkins 远程服务器自动拉取代码脚本
  2. https://www.19aq.com/article-508.html
  3. 配合Supervisor
  4. #!/bin/bash
  5. URL=https://www.19aq.com/
  6. for i in {1..11}
  7. do
  8. sleep 5
  9. curl $URL
  10. printf "\n"
  11. done
留言区域