欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

第一行必加,代表脚本

其他的就不解释了