用于监听 Shell 命令输出的 Bash 脚本
快问。我将如何让一个 shell 脚本执行以下操作:
- 执行 unix 命令 (pmset -g ps) 每 5 秒检查该脚本的输出,然后如果该命令的输出下降到 40% 以下(例如输出为:“从‘交流电源’汲取的电流 -易宝100%;充电'),然后让它运行 unix shell 脚本...
任何帮助将不胜感激。
Quick question. How would I go about having a shell script to do the following:
- execute unix command (pmset -g ps) to check the output of that script every 5 seconds, and then if the output of that command falls to below say 40% (example of output is: 'Currenty drawing from 'AC Power'
-iBox 100%; charging'), then for it to run a unix shell script...
Any help would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑,对于 Bash 2.05 及更高版本:
原始,对于 Bash 3.2 及更高版本:
Edit, for Bash 2.05 and later:
Original, for Bash 3.2 and later:
像这样的东西会起作用
Something like this would work