创建涉及进程内存使用的脚本

创建涉及进程内存使用的脚本

如何创建一个 bash 脚本来显示已进程的内存使用总和PID<100

答案1

#!/bin/bash
ps -e -o pid,pmem | awk '{  if($1>100) s+=$2} END {print s}'

相关内容