Skip to content

Instantly share code, notes, and snippets.

@olivierpierre
Last active September 15, 2016 14:48
Show Gist options
  • Save olivierpierre/512ab6c956ca1540127aa48a263d5c48 to your computer and use it in GitHub Desktop.
Save olivierpierre/512ab6c956ca1540127aa48a263d5c48 to your computer and use it in GitHub Desktop.
#!/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