mirror of
https://github.com/sbrl/bin.git
synced 2018-01-10 21:33:46 +00:00
4 lines
222 B
Bash
Executable file
4 lines
222 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# echoes the cpu steal time from /proc/stat.
|
|
# CPU steal time is the time we have been delayed because the host machine has been executing for another virtual host
|
|
head -n 1 /proc/stat | cut -f8 -d " "
|