mirror of
https://github.com/limosek/zaf-plugins.git
synced 2024-11-01 08:17:19 +01:00
7 lines
191 B
Bash
Executable File
7 lines
191 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TOTAL=0
|
|
for PROC in $(/bin/ps u -C $1 | /bin/grep -e '^$2' | /usr/bin/awk '{ print $$3 }'); do TOTAL=$(echo "$TOTAL $PROC" | /usr/bin/awk '{print $$1 + $$2}') ; done;
|
|
echo $TOTAL
|
|
|