Linux 定时
* * * * * : crontab表达式
分别对应: 分钟 小时 天 月 周
[root@localhost ~]# vim /etc/crontab
# 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
每小时文件夹
/etc/cron.hourly
每一天文件夹
/etc/cron.daily
每一周文件夹
/etc/cron.weekly
每个月文件夹
/etc/cron.monthly
增加定时任务
家目录创建1.sh文件
加权 chmod +x 1.sh
vim 1.sh
# * * * * * echo "hello xjj" >> /root/2.txt
执行/root/1.sh
cat 2.txt
得到 hello xjj
每分钟重复执行则重复得到echo结果
每一个用户的定时任务是相对隔离,在/var/spool/cron目录下,以当前用户的用户名命名的文件。
创建定时任务
crontab -r
查看定时任务
crontab -l
查看定时日志
查看定时日志: [root@localhost tmp]# cat /var/log/cron
[root@localhost tmp]# head -n 1 /var/log/cron
head: 从头部开始查看文件,默认查看10行
-n : 指定查看多少行
tail: 从尾部开始查看文件,默认查看10行
[root@localhost tmp]# tail /var/log/cron
-n : 指定查看多少行
# 查看一行
[root@localhost tmp]# tail -n 1 /var/log/cron
-f : 实时监控文件变化(插图)
less: 类似于vim的方式查看文件
q退出
cat
grep
egrep
定时任务格式
* * * * *
每隔2分钟执行
*/2 * * * *
每天的2,4,6,8,10这4个小时的1分钟执行
01 2,4,6,10 * * *
每天的2到6点执行
00 2-6 * * *
每天的2到6点中每隔2小时执行
00 2-6/2 * * *
00 02 * * 02 : 每天的2点时执行,但是这天必须时周二