Last active
September 15, 2016 14:48
-
-
Save olivierpierre/512ab6c956ca1540127aa48a263d5c48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This prints the total CPU usage for the whole system (in terms of number of cores used) | |
top -bn1 | tr -s " " | sed -r "s/^ //" | cut -d " " -f 9 | grep -E ^[0-9]+\.[0-9]+$ | awk -v procs=`cat /proc/cpuinfo | grep cessor | wc -l` 'BEGIN{sum=0} {sum+=$0} END{print sum/procs}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment