Shawn's Blog
蒸汽兔
Shell 相关命令
字数:109 字
阅读时长:约 0 分钟
阅读次
企业微信通知脚本
#! /bin/bash
# url="172.19.166.202:38088/azkaban" #生生内网代理
url = "https://qyapi.weixin.qq.com/cgi-bin/webhook" # 公网地址
key="企业微信key"
header="'Content-Type:application/json'"
notify_qiwei() {
# 如果方法有传入参数, 可用 $1 $2 ... 接收
# local thread_search_key=$1
# local script_path=$2
textmsg="{\"msgtype\": \"markdown\",\"markdown\": { \"content\": \"\" }}"
echo "$textmsg"
curl -s -H $header -d "$textmsg" $url/send?key=$key&debug=1
}