7 lines
120 B
Bash
Executable File
7 lines
120 B
Bash
Executable File
# Print the average load.
|
|
|
|
run_segment() {
|
|
uptime | cut -d "," -f 3- | cut -d ":" -f2 | sed -e "s/^[ \t]*//"
|
|
exit 0
|
|
}
|