命令
crontab [-u username] //省略用户表表示操作当前用户的crontab
-e (编辑工作表)
-l (列出工作表里的命令)
-r (删除工作作)
任务
* * * * *
- - - - -
| | | | |
| | | | +----- 周几 (0 - 7) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
| | | +---------- 月 (1 - 12) OR jan,feb,mar,apr ...
| | +--------------- 日 (1 - 31)
| +-------------------- 小时 (0 - 23)
+------------------------- 分钟 (0 - 59)
示例
0 0 L * * * echo "last" >> /tmp/test.txt
* * * * * myCommand
3,15 * * * * myCommand
3,15 8-11 * * * myCommand
0 23 * * 6 /etc/init.d/smb restart
* */1 * * * /etc/init.d/smb restart