阿铭每日一题 day 6 20180116

Posted Ivan_yyq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阿铭每日一题 day 6 20180116相关的知识,希望对你有一定的参考价值。

 

 

 

 

 

day6=参考答案=~ps.不是唯一答案哦
解析
本题有一个核心点,就是想办法把所有进程使用的内存统计出来,top或者ps命令都 可以获取每一个进程的内存使用大小。统计完内存后,然后用for循环把所有内存相加,最终得到一个内存的和就是本题的答案。
 
【参考答案】

1 #!/bin/bash
2 sum=0
3 for men in `ps aux|awk \'{print $6}\' |grep -v RSS`
4 do
5     sum=$[$sum+$men]
6 done
7 echo "The total memory is $sum."

 

以上是关于阿铭每日一题 day 6 20180116的主要内容,如果未能解决你的问题,请参考以下文章

阿铭每日一题 day 13 20180124

阿铭每日一题 day 9 20180119

阿铭每日一题 day 1 20180111

阿铭每日一题 day 7 20180117

阿铭每日一题 day 3 20180113

阿铭每日一题 day 8 20180118