Linux crontab命令怎么用,按时间计划执行任务
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
上一篇我们提到了,定时执行我们清除nohup.out里面内容的.sh脚本文件,那么,其中的 *和/2分别代表什么意思呢?
我们来看下crontab:
其中
*1 *2 *3 *4 *5 program
*1:分钟 (0 - 59)
*2:小时 (0 - 23)
*3:一个月中的第几天 (1 - 31)
*4:月份 (1 - 12)
*5:星期中星期几 (0 - 7) (星期天 为0)
program:代表要定时执行的程序
*/2 * * * * sh /home/auto-del-nohup.sh &
代表的就是每隔2分钟执行一次“auto-del-nohup.sh”这个脚本
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献7条内容
所有评论(0)