换句话说,我需要一个命令wait_until_cpu_low,我将这样使用:
# Trigger some background cpu-heavy commandwait_until_cpu_low 40# Some other commands executed when cpu usage is below 40%
我该怎么办?
编辑:
目标 *** 作系统是:Red Hat Enterprise linux Server 6.5版
>我正在考虑平均cpu使用率(跨所有内核)
wait_for_cpu_usage(){ current=$(mpstat 1 1 | awk ' ~ /[0-9.]+/ { print int(100 - + 0.5) }') while [[ "$current" -ge "" ]]; do current=$(mpstat 1 1 | awk ' ~ /[0-9.]+/ { print int(100 - + 0.5) }') sleep 1 done}
注意它需要安装sysstat包.
总结以上是内存溢出为你收集整理的linux – Bash:等到CPU使用率低于阈值全部内容,希望文章能够帮你解决linux – Bash:等到CPU使用率低于阈值所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)