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

统计内存的shell脚本

时间:2019-07-17 00:15:49      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:print   done   mem   bash   pre   shell   bsp   gre   ps aux   

 1 #!/bin/bash
 2 #方法一:
 3 ps aux | grep -v RSS TTY |awk {(sum=sum+$6)};END{print sum}
 4 #方法二:
 5 sum=0
 6 for mem in `ps aux |awk {print $6} |grep -v RSS `
 7 do
 8     sum=$[$sum+$mem]
 9 done
10 echo "The total memory is $sum""k"

 

统计内存的shell脚本

标签:print   done   mem   bash   pre   shell   bsp   gre   ps aux   

原文地址:https://www.cnblogs.com/zhj5551/p/11198237.html

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