[modify] move useless scripts to old dir

This commit is contained in:
2023-08-25 21:45:25 +08:00
parent d05c443552
commit b32ea0978d
6 changed files with 0 additions and 0 deletions

16
old/sendmsg.sh Normal file
View File

@ -0,0 +1,16 @@
#!/bin/bash
alarm="$1"
curl 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=ddea3f5f-fbfc-4c21-994a-71e9fc50e4ef' \
-H 'Content-Type: application/json' \
-d '
{
"msgtype": "text",
"text": {
"content": "'"$alarm"'"
}
}' > /dev/null 2>&1