gpt4 book ai didi

linux - 使用 sh 监视输出时无法解决此错误

转载 作者:IT王子 更新时间:2023-10-29 00:39:01 25 4
gpt4 key购买 nike

我正在进行优化,为此我需要将 matlab 代码链接到 linux 程序并持续监控输出。我在下面使用这个 sh 完成了这个链接,但是它运行不佳,因为我无法跟踪多个“表达式”。

#!/bin/bash
../program inputfile &> OutputFile.dat &
tail -f OutputFile.dat | sed -n '/NaN/q;/STOP/q'
killall program

我在这里寻求帮助,我得到了一个很好的解决方案。该解决方案部分解决了问题。在提示符下运行程序,可以跟踪这些表达式并在需要时终止程序。给出的解决方案是:

#!/bin/bash
( stdbuf -o 0 -e 0 ../program inputfile & ) &> OutputFile.dat
sed -n '/NaN/q;/STOP/q' <(tail -f OutputFile.dat)
killall program

当我在 matlab 上实现并进行“链接”时,代码响应不佳。运行几分钟后,matlab 卡住了,我无法从终端得到任何答复。当手动查看我的程序的输出时,我意识到程序没有问题,并且输出正常被写入。

我无法解决这个问题。我对 sh 没有太多经验。我已经搜索了答案,但找不到任何答案。也欢迎提出实现相同目标的替代建议。

提前致谢

最佳答案

tail -f 导致挂起。您还需要终止 sed/tail 进程才能继续。

#!/bin/bash

( stdbuf -o 0 -e 0 ../program inputfile & ) &> OutputFile.dat
# get the process id (pid) of "program"
# (bash sets $! to the pid of the last background process)
program_pid=$!

# put this in the background, too
sed -n '/NaN/q;/STOP/q' <(tail -f OutputFile.dat) &
# get its pid
sed_pid=$!

# wait while "program" and sed are both still running
while ps -p $program_pid && ps -p $sed_pid; do
sleep 1
done >/dev/null

# one (or both) have now ended
if ps -p $program_pid >/dev/null; then
# "program" is still running, and sed must have found a match and ended
echo "found Nan or STOP; killing program"
kill $program_pid
elif ps -p $sed_pid; then
# sed is still running, so program must have finished ok
kill $sed_pid
fi

引用:https://stackoverflow.com/a/2041505/1563960

关于linux - 使用 sh 监视输出时无法解决此错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36105005/

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