crontab+微信机器人定时提醒

2020-07-07  本文已影响0人  卫彬TM

创建企业微信群机器人

image.png
获取机器人的ID:https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=*******************

创建发送的简单脚本

cat gstx.sh

curl 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=*************** '\
   -H 'Content-Type: application/json' \
   -d '
{
    "msgtype": "text",
    "text": {
        "content": "【工做提醒】当天任务及时完成提交,不要忘记,日事日清!!!",
        "mentioned_list":["@all"]
    }
}'

配置定时任务

前提条件:此服务器可以连接访问外网、可以和https://qyapi.weixin.qq.com通信

crontab -e
* 13,15,17 * * 1  /data/szgl2020/gstx.sh
crontab -l
* 13,15,17 * * 1  /data/szgl2020/gstx.sh
image.png
计划任务crontab 命令
上一篇下一篇

猜你喜欢

热点阅读