文章目录
- 1. 基本格式
- 2. 基本命令
- 3. 常用案例
1. 基本格式
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed分 时 天 月 星期
2. 基本命令
#当前用户编辑定时任务执行频次配置文件
crontab -e
#查看当前用户下的定时任务列表
crontab -l
#使用root用户重新启动
service crond restart
3. 常用案例
#1.一直在执行
* * * * * /bin/sh /home/oracle/1.sh#2.每天11点25分执行
25 11 * * * /bin/sh /app/2.sh#3.每天凌晨4点执行
0 4 * * * /bin/sh /app/3.sh#4.设置定时器定时执行脚本(每天凌晨2点08分执行一次):
8 2 * * * /bin/sh /app/download_y.sh#5.设置定时器定时执行脚本(每年1月2日凌晨2点38分执行一次):
crontab -e
38 2 2 1 * /bin/sh /app/download_pep_y.sh#6.设置定时器定时执行脚本(每周六凌晨2点18分执行一次,):
18 2 * * 6 /bin/sh /app/accuitydownload_m.sh