检测内存的使用率

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检测内存的使用率相关的知识,希望对你有一定的参考价值。

#!/bin/bash

mem=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

以上是关于检测内存的使用率的主要内容,如果未能解决你的问题,请参考以下文章

Android:使用Tab检测单个片段viewpager

十条实用的jQuery代码片段

高效Web开发的10个jQuery代码片段

C 中的共享内存代码片段

在一个片段中检测Recyclerview的上下滑动,我怎么做?

在 Python 多处理进程中运行较慢的 OpenCV 代码片段