Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save miguelmota/10183128 to your computer and use it in GitHub Desktop.
Save miguelmota/10183128 to your computer and use it in GitHub Desktop.
Get load average on Mac OSX
# 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