Skip to content

Instantly share code, notes, and snippets.

@pierophp
Last active September 28, 2016 14:02
Show Gist options
  • Save pierophp/04904e515bc6cca6947ec63d184704cc to your computer and use it in GitHub Desktop.
Save pierophp/04904e515bc6cca6947ec63d184704cc to your computer and use it in GitHub Desktop.
Get Total CPU Utilization
top -bn2 | grep "Cpu(s)" | sed -n 2p | sed -e 's/%us//g' | sed -e 's/%sy//g' | awk '{print ($2 + $3)}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment