码迷,mamicode.com
首页 > 系统相关 > 详细

Linux统计根分区使用率

时间:2018-11-19 20:30:13      阅读:439      评论:0      收藏:0      [点我收藏+]

标签:exce   min   class   awk   bsp   mini   col   style   作者   

 1 #!/bin/bash
 2 
 3 # 统计根分区使用率
 4 # 作者: shaohsiung
 5 # 时间: 2018/11/19
 6 
 7 rate=$(df -h | grep "dev/sda3" | awk {print $5} | cut -d "%" -f1)
 8 
 9 if [ $rate -ge 80 ]
10     then
11         echo "Root partition usage exceeds 80%, mail has been sent to the administrator..."
12 fi

 

Linux统计根分区使用率

标签:exce   min   class   awk   bsp   mini   col   style   作者   

原文地址:https://www.cnblogs.com/shaohsiung/p/9984588.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!