Skip to content

Instantly share code, notes, and snippets.

@abramovk
Created December 2, 2023 11:55
Show Gist options
  • Save abramovk/d7556956e43b519ae9deed0706f212b9 to your computer and use it in GitHub Desktop.
Save abramovk/d7556956e43b519ae9deed0706f212b9 to your computer and use it in GitHub Desktop.
CPU usage
#!/bin/sh
grep 'cpu ' /proc/stat | awk '{usage=($2+$4)*100/($2+$4+$5)} END {print usage "%"}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment