linux – Bash:等到CPU使用率低于阈值

linux – Bash:等到CPU使用率低于阈值,第1张

概述在bash脚本中,我需要等到CPU使用率低于阈值. 换句话说,我需要一个命令wait_until_cpu_low,我将这样使用: # Trigger some background CPU-heavy commandwait_until_cpu_low 40# Some other commands executed when CPU usage is below 40% 我该怎么办? 编辑: 在bash脚本中,我需要等到cpu使用率低于阈值.

换句话说,我需要一个命令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使用率低于阈值所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1048426.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存