avd/module/cpu
2020-12-28 14:03:50 -05:00

16 lines
328 B
Bash
Executable File

#!/bin/bash
mod_cpu () {
# Customizable configuration constants
local -r DEFAULT_PRE=' '
local -r DEFAULT_SUF=''
local -r pre="${1-${DEFAULT_PRE}}"
local -r suf="${2-${DEFAULT_SUF}}"
printf '%b' "${pre}"
ps --no-headers -A -o %cpu | awk '{cpu = cpu + $1} END {printf "%3.0f", cpu}'
printf '%b' "${suf}"
}