gpt4 book ai didi

ruby - `exec` 杀死脚本

转载 作者:太空宇宙 更新时间:2023-11-03 16:02:18 24 4
gpt4 key购买 nike

通过 exec 运行 sdiff 会导致我的脚本无错退出。即使是 ensure block 也不会运行:

begin
puts "I occur"
exec("sdiff onefile.csv anotherfile.csv > filediffs.txt")
rescue Exception => e
puts "I do not get printed"
puts e
ensure
puts "I do not get printed"
end
puts "I used to get printed, repeatedly, now not, repeatedly"

它按预期工作了一段时间,然后开始神秘退出,条件相同。 “我发生”后没有终端输出。

最佳答案

这是 exec 方法的预期行为,documentation关于它说:

Replaces the current process by running the given external command

您可能想使用 system而不是 exec

关于ruby - `exec` 杀死脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21758749/

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