格式
crontab [-u username] //省略用户表表示操作当前用户的crontab -e (编辑工作表) -l (列出工作表里的命令) -r (删除工作作)
crontab 的命令构成为 时间+动作,其时间有 分、时、日、月、周五种,操作符有:
- * 取值范围内的所有数字
- / 每过多少个数字
- – 从X到Z
- ,散列数字
crontab -e 和 /etc/crontab
使用 vi /etc/crontab
添加定时任务需要设置 user-name。
使用 crontab -e
则无需设置 user-name。
这两种设好后都是立即生效,可用此命令测试:echo hello > /home/test-crontab
常用实例
# 每天 23:00 自动关机、重启 0 23 * * * root /sbin/shutdown -h now 0 23 * * * root /sbin/reboot -h now #每1分钟执行一次 echo 命令 * * * * * echo hello > /home/test-crontab #每小时的第3和第15分钟执行 3,15 * * * * myCommand #在上午8点到11点的第3和第15分钟执行 3,15 8-11 * * * myCommand #每隔两天的上午8点到11点的第3和第15分钟执行 3,15 8-11 */2 * * myCommand #每周一上午8点到11点的第3和第15分钟执行 3,15 8-11 * * 1 myCommand #每晚的21:30重启smb 30 21 * * * /etc/init.d/smb restart #每月1、10、22日的4 : 45重启smb 45 4 1,10,22 * * /etc/init.d/smb restart #每周六、周日的1 : 10重启smb 10 1 * * 6,0 /etc/init.d/smb restart #每天18 : 00至23 : 00之间每隔30分钟重启smb 0,30 18-23 * * * /etc/init.d/smb restart #每星期六的晚上11 : 00 pm重启smb 0 23 * * 6 /etc/init.d/smb restart #每一小时重启smb 0 */1 * * * /etc/init.d/smb restart #晚上11点到早上7点之间,每隔一小时重启smb 0 23-7/1 * * * /etc/init.d/smb restart