如何在 Ruby 中终止 PTY.spawn 调用?
如果我使用 ruby 的 pty 类运行这样的命令,如果找到某个输入字符串,我该如何杀死它?
cmd = "appcfg.py update cdn"
PTY.spawn("#{cmd} 2>&1") do | input, output, pid |
begin
input.expect("Email:") do
output.write("#{credentials[:username]}\n")
end
input.expect("Password:") do
output.write("#{credentials[:password]}\n")
end
if input.gets == "SOMETHING"
EXIT!
end
rescue Exception => e
puts "GAE Error..."
end
end
这样做的正确方法是什么?
If I run a command like this, using ruby's pty class, how do I kill it if I find a certain input string?
cmd = "appcfg.py update cdn"
PTY.spawn("#{cmd} 2>&1") do | input, output, pid |
begin
input.expect("Email:") do
output.write("#{credentials[:username]}\n")
end
input.expect("Password:") do
output.write("#{credentials[:password]}\n")
end
if input.gets == "SOMETHING"
EXIT!
end
rescue Exception => e
puts "GAE Error..."
end
end
What is the right way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的事情怎么办?
当然,如果您运行 ruby1.9(并且它将杀死所有 ruby1.9 进程!(因此,如果您在服务器上运行其他一些 ruby prog 或某些东西,您将必须执行一些 if 语句来检查它是哪个进程。
What about something like this?
This is ofcourse if you run ruby1.9 (and it will kill ALL ruby1.9 processes! (so if you are running some other ruby prog on your server or something you will have to do some if statement to check which process it is.