Skip to content

Instantly share code, notes, and snippets.

@alexeiz
Created November 14, 2014 06:22
Show Gist options
  • Save alexeiz/97aba97881de7b1dabb2 to your computer and use it in GitHub Desktop.
Save alexeiz/97aba97881de7b1dabb2 to your computer and use it in GitHub Desktop.
Show uptime load averages in the tmux status line.
#!/bin/sh
uptime | gawk 'BEGIN{FS="[:,] "}{printf "%s %s %s", $(NF-2), $(NF-1), $NF}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment