当输出打印到 ruby 中的 stdout 时,如何使用回调
我正在编写用于监视服务器状态的脚本。 我可以用 javascript 编写代码,但我必须用 ruby 编写。
在javascript中,可以使用node.js来完成,如下所示。
var iostat = require('child_process').spawn("iostat", ["-w 1"]);
iostat.stdout.on('data', function (data) {
console.log(data);
});
此代码每秒执行 iostat 命令并输出到控制台。 我怎样才能在红宝石中实现同样的事情? 换句话说,我想在用 ruby 打印 stdout 时使用回调。
I am writing scripts for watching servers status.
I can write the code in javascript, but I have to write it in ruby.
In javascript,it can be done using node.js like this.
var iostat = require('child_process').spawn("iostat", ["-w 1"]);
iostat.stdout.on('data', function (data) {
console.log(data);
});
This code executes iostat command and output to console every second.
How can I implement the same thing in ruby?
In other words, I want to use callback when stdout was printed in ruby.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能有更好的方法来做到这一点,但你可以这样做:
如果你在 IRB 或 Pry 中执行此操作,会有点奇怪,因为它们会在你自己的基础上自行生成输出(即
nil 在你执行
puts
之后),但这是来自 pry 的复制/粘贴:顺便说一句,我不建议你这样做......修补核心类通常是一个坏主意。我提到它纯粹是出于学术目的。
There are probably better ways to do this, but you can do things like this:
It's a little weird if you do this in IRB or Pry, because they produce output themselves, on top of your own (i.e. the
nil
after you doputs
), but here's a copy/paste from pry:By the way, I'm not advising you do this... patching core classes is generally a bad idea. I mention it purely for academic purposes.