检测内存的使用率
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检测内存的使用率相关的知识,希望对你有一定的参考价值。
#!/bin/bashmem=free -m |grep Mem |awk ‘{print $3/$2*100}‘ |awk -F. ‘{print $1}‘
if [ $mem -ge 80 ];then
echo "Memory usage exceeds 80%."
read -p "Do you want to clean up the memory? [y/n] " answer
if [ $answer = y ];then
echo 3 > /proc/sys/vm/drop_caches
echo "Memory cleaning completion."
elif [ $answer = n ];then
echo "Exit."
else
echo "Input error."
fi
else
echo "The rate of use of memory is $mem%."
fi
以上是关于检测内存的使用率的主要内容,如果未能解决你的问题,请参考以下文章