linux 定时任务实现教程
程序员文章站
2022-07-28 20:12:32
crontab -e
* * * * * /usr/bin/sh /she/news.sh
一分钟执行一次这个脚本
定时执行shell脚本
#!/bin/bash
#ec...
crontab -e
* * * * * /usr/bin/sh /she/news.sh
一分钟执行一次这个脚本
定时执行shell脚本
#!/bin/bash
#echo "Intel Galileo" >> /home/project/test/test.php
#/usr/local/php/bin/php /home/project/weixin/mass.php
第一行必加,代表脚本
其他的就不解释了