美文网首页
crontab+微信机器人定时提醒

crontab+微信机器人定时提醒

作者: 卫彬TM | 来源:发表于2020-07-07 15:30 被阅读0次

创建企业微信群机器人

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 命令

相关文章

网友评论

      本文标题:crontab+微信机器人定时提醒

      本文链接:https://www.haomeiwen.com/subject/wnnaqktx.html