for while crontab 小练习

1、显示统计占用系统内存最多的进程,并排序。

for while crontab 小练习

2、编写脚本,使用forwhile分别实现192.168.0.0/24网段内,地址是否能够ping通,若ping通则输出"success!",若ping不通则输出"fail!"

for循环

for while crontab 小练习

while循环

for while crontab 小练习

3、每周的工作日1:30,将/etc备份至/backup目录中,保存的文件名称格式 “etcbak-yyyy-mm-dd-HH.tar.xz”,其中日期是前一天的时间

for while crontab 小练习

crontab -l

30 1 * * 1-5 /bin/bash /data/backup.sh &> /dev/null

4、工作日时间,每10分钟执行一次磁盘空间检查,一旦发现任何分区利用率高 80%,就发送邮件报警

for while crontab 小练习

crontab -l

/10 * * * * /bin/bash /data/disk.sh