mirror of
https://github.com/shokinn/.files.git
synced 2025-01-19 05:22:25 +00:00
10 lines
158 B
Bash
Executable file
10 lines
158 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
#
|
|
# {{@@ header() @@}}
|
|
#
|
|
|
|
load=$(uptime | grep -ohe 'load average[s:][: ].*' | sed 's/,//g' | awk '{print $3" "$4" "$5}')
|
|
|
|
echo -n $load
|