Skip to content

Instantly share code, notes, and snippets.

@geraldstanje
Forked from miguelmota/loadavg.sh
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geraldstanje/5e1ff16530d641980315 to your computer and use it in GitHub Desktop.
Save geraldstanje/5e1ff16530d641980315 to your computer and use it in GitHub Desktop.
# Method one - w
w | head -n1 | cut -d":" -f4
# Method two - uptime
uptime | cut -d":" -f4- | sed s/,//g
# Method three - loads.d
sudo loads.d | awk '/./ { printf "%.2f %.2f %.2f\n", $7, $8, $9 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment