gpt4 book ai didi

linux - 在超时内给出命令错误

转载 作者:太空宇宙 更新时间:2023-11-04 12:06:04 30 4
gpt4 key购买 nike

我在 gnome 上使用超时功能等待我的脚本从 inp.txt 读取输入 1 秒。我需要将脚本的输出写入 out.txt,所以我这样编写代码

timeout 1 myscript < inp.txt > out.txt

我遇到的问题是,如果 myscript 失败(段错误等),它会将错误打印到屏幕上。
我想将这些消息保存在类似 Error.log 的文件中,但我不知道该怎么做。
我试过了

timeout 1 myscript < inp.txt > out.txt 2> Error.log

但它给了我这个而不是 myscript 的错误。

timeout: the monitored command dumped core

最佳答案

使用带引号参数的子 shell 来包装重定向,这样 timeout 就看不到它们:

timeout --preserve-status 1  sh -c 'exec myscript < inp.txt > out.txt 2> Error.log'

关于linux - 在超时内给出命令错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50655759/

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