防止bash打印“Aborted”消息

前端之家收集整理的这篇文章主要介绍了防止bash打印“Aborted”消息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个测试脚本,它通过各种输入反复运行一个小应用程序:
# test_script.sh

for input1 in $some_range; do
    for input2 in $some_other_range; do
        if ! ./my_app $input1 $input2 2>/dev/null; then
            echo "ERROR: app Failed with inputs: $input1 $input2"
        fi
    done
done

这一切都很好,除非它失败了,我得到两条消息,我想要的“错误”消息,然后另一条消息(显然是来自bash?)提醒我我的应用程序已中止:

test_script.sh: line 10:   641 Aborted           ./my_app $input1 $input2
ERROR: app Failed with inputs: XXX YYY

如何防止“中止”消息?

另请注意:应用程序可能在标准C库’assert’语句上失败.

我也碰到了这个.如果子进程返回状态代码134,表明孩子收到了SIGABRT,那么bash本身就会单方面打印出来.解决方案是在子shell中运行子进程,然后确保子shell在失败时返回不同的(仍为非零)状态代码,并将其输出重定向到/ dev / null.例如:
if ! ( ./myapp || false ) >/dev/null 2>&1; then
    ...
fi
原文链接:https://www.f2er.com/bash/384247.html

猜你在找的Bash相关文章