linux bash shell http请求脚本

/opt/refreshCache/refreshCache.sh

[umed@VM-0-14-centos logspayment]$ more /bin/bash /home/umed/opt/refreshCache/refreshCache.sh

******** /bin/bash: Not a text file ********

::::::::::::::
/home/umed/opt/refreshCache/refreshCache.sh
::::::::::::::
#!/bin/bash

# 定义接口地址
URL1="https://hlwyy.yy.com/rbu/open/uipHttp/refresh?hospitalId=&uhospitalId=81d6ee37-afc3-4625-8720-ee916a6ebeb1"
URL2="https://hlwyy.yy.com/ibh/consultapi//config/hospitalConfig/updateConfig?unionId=33&hospitalId=1120010613414232310"

# 定义日志文件路径,下方的 /path/to/your/logfile.log 需要改成自己项目上的路径,切记!
LOG_FILE="/home/umed/opt/refreshCache/logfile.log"

# 定义函数,用 curl 发送请求,并打日志
function send_request {
    URL=$1
    echo "Sending GET request to $URL" >> $LOG_FILE
    RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" $URL)
    if [ $RESPONSE -eq 200 ]; then
        echo "Successfully refreshed $URL at $(date)" >> $LOG_FILE
    else
        echo "Failed to refresh $URL at $(date). HTTP response code: $RESPONSE" >> $LOG_FILE
    fi
}

# Send GET requests
send_request $URL1
send_request $URL2

定时任务crontab

[umed@VM-0-14-centos logspayment]$ sudo crontab -u root -l
*/5 * * * * flock -xn /tmp/stargate.lock -c '/usr/local/qcloud/stargate/admin/start.sh > /dev/null 2>&1 &'
0 0 * * * /bin/bash /home/umed/opt/refreshCache/refreshCache.sh
相关推荐
zqzgng18 分钟前
裸金属服务器和专属主机的区别是什么?
linux·运维·服务器
Mr.kanglong21 分钟前
【Linux】TCP网络编程
linux·运维·服务器
yylの博客23 分钟前
windows下生成的脚本,linux无法正常运行问题
linux·windows·go
孤邑24 分钟前
【Linux】select,poll和epoll
linux·网络·笔记·学习
OkeyProxy24 分钟前
Linux系統中修改IP地址詳細教程
linux·代理模式·proxy模式·ip地址·代理ip
粥啊、26 分钟前
八、Linux下的火墙管理及优化
linux·运维·服务器
雾间云27 分钟前
【Linux】基础-文件系统
linux·运维·服务器
歌笑爱学习28 分钟前
【软件国产化】| Windows和Linux下文件名后缀是否区分大小写
linux·c语言·c++·windows
抛物线.30 分钟前
Linux ACL 权限详解与多场景实践
linux·运维·windows
jianchwa1 小时前
3.10 内核 BUG_ON() at xfs_vm_writepage() -> page_buffers()
linux·运维·bug