I want to use ps on my desktop through geektools to see what processes are using what. Currently my command is:

ps -amcwwwxo "command %mem %cpu" | grep -v grep | head -13

The problem with this, is seeing as I'm using chrome, the process "Google Chrome He" takes up most of the 13 display lines.

Is there any way to sum together the mem and cpu usage of all processes of the same name? Either via ps or piping it through another command.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You may use a combination of awk and sort:

(
printf "%-20s %-8s %-8s\n" "COMMAND" "%MEM" "%CPU"
/bin/ps -amcwwwxo "command %mem %cpu" | 
/usr/bin/awk -F" " '
BEGIN { 
  idx=0 
  format="%-20s /%-8s/ %-8s\n"
}
{
  idx = idx + 1
  col1=$0
  col2=$(NF-1)
  col3=$NF
  sub(/[[:space:]]+[^ ]+[[:space:]]+[^ ]+[[:space:]]*$/,"", col1)
  a[idx]=col1
  b[col1]+=col2
  c[col1]+=col3
}
END {
  for(i=2; i<=idx; i++) 
  {
    if (a[i] in b)
    {
      printf format, a[i], b[a[i]], c[a[i]]
      delete b[a[i]]
    }
  }
}
' | 
/usr/bin/sort -rn -t '/' -k 2,2 | /usr/bin/tr -d '/' | /usr/bin/head -n 15
)
link|improve this answer
Awesome stuff, thanks! – skeletalmonkey Jun 16 '11 at 3:53
feedback

It does not exist, you should write your own code/command/script to do it. Because all Google Chrome Helper processes are distinct processes, maybe you can write a script which computes all Chrome processes (helper, plug-in hosts etc.) using parent process id.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.