gpt4 book ai didi

ruby - 无法在 Windows 上使用 Ctrl+C 中断/终止 Ruby 脚本

转载 作者:数据小太阳 更新时间:2023-10-29 07:37:05 24 4
gpt4 key购买 nike

我的脚本打开 TCP 连接并从服务器读取数据。如果服务器没有响应,我尝试使用 Ctrl+C 中断脚本,但它不起作用。终止脚本的唯一方法是在任务管理器中终止进程。有什么想法可以中断这样的脚本吗?

require 'socket'

host = '...'
port = ...

s = TCPSocket.open(host, port)

while line = s.gets
puts line.chop
end

s.close

最佳答案

trap("SIGINT") { 清理;退出

关于ruby - 无法在 Windows 上使用 Ctrl+C 中断/终止 Ruby 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4349948/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com