码迷,mamicode.com
首页 >  
搜索关键字:shell脚本监控进程内存使用量    ( 1个结果
脚本统计某进程的内存使用大小
#!/bin/bash memlist=`psauxf--width=1000|grep$1|grep-vgrep|awk‘{print$6}‘`; totalMem=0 formemin$memlist;do let"totalMem=$totalMem+mem" done echo$totalMem$1表示进程名字,是脚本给出的参数。也是zabbix上Item中要指定的。上面的脚本可以简化:#!/bin/bash mem=`psaux..
分类:系统相关   时间:2016-08-02 17:20:03    阅读次数:367
1条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!