10. Shell应用Cron和Bash
2018-03-29 本文已影响0人
Lv_0
-
Crontab定时任务
crond进程
为linux下crontab的进程,系统安装后会默认安装启动此进程,此进程每分钟会进行检查是否有要执行的任务
image.png
系统任务调度配置文件
路径 /etc/crontab
- SHELL变量指定使用的shell
- PATH变量指定系统执行命令的路径
- MAILTO变量指定crond任务执行信息发送给root,若为空,则表示不发送执行信息给用户
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# For details see man 4 crontabs
# 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
image.png
用户任务调度
- 用户定期要执行的工作,比如用户数据备份,定时邮件提醒等;
- 用户可以使用 crontab工具来定制自己的计划任务;
- 所有用户定义的crontab 文件都被保存在 /var/spool/cron目录中,其文件名与用户名一致
image.png
使用者权限文件
- /etc/cron.deny文件中用户不允许使用crontab命令
- /etc/cron.allow文件中用户允许使用crontab命令
crontab格式说明
- 任务定义:minute hour day month week command
- 特殊字符在任务定义中的含义
符号 | 含义 | 示例 |
---|---|---|
* | 表示任意 | *****表示每分钟 |
, | 分割范围 | 1,3,4,5 |
- | 范围值 | 2-6 |
/ | 间隔频率 | 0-23/2每两小时执行一次 在minutes字段*/10表示10分钟执行一次 |
image.png
服务操作说明
systemctl start/stop/restart/status/reload crond
crontab命令
crontab [-u user] file
crontab [-u user] [ -e/-l/-r ]
参数详情:
- -u user:用来设定某个用户的crontab服务,此参数一般有root用户来运行
- file:file是命令文件的名字,表示将file做为crontab的任务列表文件并载入crontab,如果在命令行中没有指定这个文件,crontab命令将接受标准输入上键入的命令,并将它们载入crontab
- -e:编辑某个用户的crontab文件内容,如果不指定用户,则表示编辑当前用户的crontab文件
- -l:显示某个用户的crontab文件内容,如果不指定用户,则表示显示当前用户的crontab文件内容
- -r:从/var/spool/cron目录中删除某个用户的crontab文件,如果不指定用户,则默认删除当前用户的crontab文件
- -i:在删除用户的crontab文件时给确认提示
image.png
创建crontab文件
- 新建保存crontab命令的文件
image.png
- 将文件内容加入cron进程
crontab delete_log.cron
image.png
- 查看列出当前crontab文件
crontab -l
image.png
- 备份当前的crontab文件
image.png
- 编辑crontab文件
crontab -e
编辑方式同vi,wq保存退出
image.png
image.png
- 删除当前crontab文件
image.png
- 恢复误删的crontab文件
方式一:将备份文件直接写入crontab文件存储地 /var/spool/cron/root(root用户)
方式二:crontab命令将文件加入cron进程 crontab $HOME/cron_bak/mycorn
image.png
- 动态打印任务执行结果
tail -f /var/log/cron
image.png
- 查看邮件
more /var/spool/mail/root
image.png
定时任务格式说明
任务格式:minute hour day month week command
任务格式 | 说明 |
---|---|
* * * * * command | 每分钟执行一次命令 |
3,15 * * * * command | 每小时的3分15分执行任务 |
3,15 8-11 * * * command | 每天上午8点到11点每小时的3分15分执行任务 |
3,15 8-11 */2 * * command | 每隔两天的上午8点到11点每小时的3分15分执行任务 |
3,15 8-11 * * 1 command | 每周一的上午8点到11点每小时的3分15分执行任务 |
30 21 * * * command | 每天的21点30分执行命令 |
45 4 1,10,22 * * command | 每月的1日10日22日4点45分执行命令 |
10 1 * * 6,0 command | 每周六周日1点10分执行命令 |
0,30 18-23 * * * command | 每天18点到23点每半个小时执行命令 |
0 23 * * 6 command | 每周六的23点执行命令 |
* */1 * * * command | 每小时执行命令 |
* 23-7/1 * * * command | 每天23点到7点的每小时执行命令 |
0 11 4 * mon-wed command | 每月4号和每周一到周三的11点执行命令 |
0 4 1 jan * command | 每年一月一号的4点执行命令 |
注意事项
- 脚本中(shell)涉及到其他环境变量时,通过source命令引入
- 脚本中(shell)涉及到路径时,必须使用全局路径,否则可能导致脚本运行无结果
- 任务调度分为系统任务调度与用户任务调度,注意重启系统的任务,必须放入 /etc/crontab文件中
- 创建新的cron任务,一般需要等2分钟才会执行,重启cron可立即执行
- 在crontab中%代表换行的意思,若要用其本意,则需要转义%,如date ‘+%Y%m%d’
- 每条任务调度执行完毕,系统都会将任务输出信息通过电子邮件的形式发送给当前系统用户,为防止日志文件过大,常使用定时任务对日志文件进行重定向
-
Shell脚本
- 创建文件的小脚本
#! /bin/bash
#通过输入的值创建文件
read -p "Please input a num : " a
for i in `seq 1 $a`;do
#保留两位数
j=$(printf "%.2d" $i)
touch test_log.$j
done
image.png
- 删除后缀大于10的文件
#! /bin/bash
#删除后缀大于10的文件
for i in $(ls /home/Lv0/0327/);do
#从文件名中以.分割,取第2区数字,并在数字中去除开头的0(防止shell识别不了其为数字)
j=$(echo $i|awk -F '.' '{print $2}'|sed 's/^0*//')
if (($j>=10));then
rm -rf /home/Lv0/0327/$i
fi
done
image.png
-
cron+shell定时执行
image.png