(1) 如果参数1的值为gzip,则使用tar和gzip归档压缩/etc目录至/backups目录中,并命名为/backups/etc-20160613.tar.gz;
(2) 如果参数1的值为bzip2,则使用tar和bzip2归档压缩/etc目录至/backups目录中,并命名为/backups/etc-20160613.tar.bz2;
(3) 如果参数1的值为xz,则使用tar和xz归档压缩/etc目录至/backups目录中,并命名为/backups/etc-20160613.tar.xz;
(4) 其它任意值,则显示错误压缩工具,并执行非正常退出;
[root@student scripts]# vim 21.sh
#!/bin/bash
echo 1:gzip
echo 2:bzip
echo 3:xz
[ -d /backups ] || mkdir /backups
read -p "请输入序号指定打包压缩类型:" NAME
case "$NAME" in
1)
tar -Pczvf /backups/etc-20160613.tar.gz /etc/* &>/dev/null
;;
2)
tar -Pcjvf /backups/etc-20160613.tar.bz2 /etc/* &>/dev/null
;;
3)
tar -PcJvf /backups/etc-20160613.tar.xz /etc/* &>/dev/null
;;
[^0-3])
echo "错误"
;;
esac
#运行测试脚本
[root@student scripts]# bash 21.sh
1:gzip
2:bzip
3:xz
请输入序号指定打包压缩类型:5
选择错误
[root@student scripts]# ll /backups
ls: cannot access '/backups': No such file or directory
[root@student scripts]# bash 21.sh
1:gzip
2:bzip
3:xz
请输入序号指定打包压缩类型:1
[root@student scripts]# ll /backups
total 7552
-rw-r--r--. 1 root root 7732782 Sep 21 09:43 etc-20160613.tar.gz
根分区剩余空间小于20%
发送告警邮件给自己
配合crond每5分钟检查一次脚本
#编辑脚本,因为我根内存使用很少,我将条件改为大于20%时发邮件
[root@localhost ~]# vim /progress/03.sh
#!/bin/bash
#根剩余内存
mem=`df | grep /dev/mapper/openeuler-root | tr -s " " " " | cut -d " " -f 4`
#根总共内存
total=`df | grep /dev/mapper/openeuler-root | tr -s " " " " | cut -d " " -f 2`
num=` echo $mem*100 / $total | bc`
if [ $num -lt 20 ];then
echo 内存报警 | mail -s "报警" -a /a.txt 18200560891@163.com < /a.txt
fi
#编辑例行性任务,每5分钟执行一次
[root@localhost ~]# crontab -e
*/5 * * * * bash /progress/03.sh
#查看crontab正在运行任务
[root@localhost ~]# crontab -l
*/5 * * * * bash /progress/03.sh