1. 各字段值允许的范围
2. *
的含义
The *
means all the possible unit:
- When you specify
*/5
in minute field means every 5 minutes.
- When you specify
0-10/2
in minute field mean every 2 minutes in the first 10 minute.
- Thus the above convention can be used for all the other 4 fields.
3. 特殊关键字的含义
2. 相关命令
3. 注意
1. 环境变量
crontab
在运行时,会加载一个最简化的环境变量,如果希望保持用户的环境变量,可以通过. ~/.bash_profile
文件,即:
2. %
转义
crontab
中%
有特殊含义
3. 标准输出/错误重定向
crontab
在执行的时候,如果没有重定向,会将标准错误和标准输出都发送到mail
,在重定向的时候,句柄绑定操作应该放在命令最后。