# crontab –e
这样可以已编辑模式打开个人的crontab配置文件,然后加入一下这行:
0 0 * * * /home/linrui/XXXXXXXX.sh
这将会在每天凌晨运行 指定的.sh文件
以下是 crontab 文件的格式:
{minute} {hour} {day-of-month} {month} {day-of-week} {full-path-to-shell-script}
o minute: 区间为 0 – 59
o hour: 区间为0 – 23
o day-of-month: 区间为0 – 31
o month: 区间为1 – 12. 1 是1月. 12是12月
o Day-of-week: 区间为0 – 7. 周日可以是0或7
查看系统时间命令:date;
若要执行python等其他程序,要写在shell脚本中,并加执行权限chmod +x file
可将结果重定向输出(若有新建文件等将位置会改变):3 9 * * * /home/custdev/myTest/t.sh >> /home/myTest.log 2>&1 &
其开机自启动,运行命令:sudo service cron start
1 0 * * * /home/linrui/XXXX.sh
59 11 * * 1,2,3,4,5 /home/linrui/XXXX.sh
或者如下写法:
59 11 * * 1-5 /home/linrui/XXXX.sh
*/1 * * * * /home/linrui/XXXX.sh
10 14 1 * * /home/linrui/XXXX.sh
Crontab命令的选项,以下是 crontab 的有效选项:(退出用ctrl+X)
crontab –e : 修改 crontab 文件. 如果文件不存在会自动创建。
crontab –l : 显示 crontab 文件。
crontab -r : 删除 crontab 文件。
crontab -ir : 删除 crontab 文件前提醒用户。