3

我在 centos 机器上有以下 sh 脚本:

echo "PID,CPU,MEM,PROC"
while [ 1 ]
do
    ps aux | grep mysql | awk '{print  $2",", $3",", $4",", $11}'
    sleep 1
done

每个周期的输出都有这个输出:

1163, 0.0, 0.0, /bin/sh
1265, 0.0, 1.5, /usr/libexec/mysqld
11807, 0.0, 0.3, grep

我想知道如何循环输出并使用变量来合并值并只返回一行:合并结果中不需要 PID 和 PROC

mysql, 0.0, 1.8

其中 0.0 是 CPU(所有进程 cpu 使用总和)和 1.8 RAM(所有进程 ram 使用总和)。

4

1 回答 1

4
ps -eo "comm %cpu %mem" --no-headers | awk '{a[$1] = $1; b[$1] += $2; c[$1] += $3}END{for (i in a)printf "%s, %0.1f, %0.1f\n", a[i], b[i], c[i]}' | sort

示例输出:

awk, 0.0, 0.0
bash, 0.0, 1.5
ps, 0.0, 0.0
sort, 0.0, 0.0

具体流程:

ps -C bash -o "comm %cpu %mem" --no-headers | awk '{a[$1] = $1; b[$1] += $2; c[$1] += $3}END{for (i in a)printf "%s, %0.1f, %0.1f\n", a[i], b[i], c[i]}'

输出:

bash, 0.0, 1.5
于 2013-09-20T17:28:57.857 回答