shell实例-磁盘容量监控

前端之家收集整理的这篇文章主要介绍了shell实例-磁盘容量监控前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#!/bin/bash
rage=$(df-h|grep"/dev/sda5"|awk'{print$5}'|cut-d"%"-f1)
if[$rage-ge10]
then
echo"/dev/sda5isfull!!!!"
fi
原文链接:https://www.f2er.com/bash/392826.html

猜你在找的Bash相关文章