如何判断bash脚本中的任何命令是否失败(非零退出状态)

前端之家收集整理的这篇文章主要介绍了如何判断bash脚本中的任何命令是否失败(非零退出状态)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道bash脚本中的任何命令是否以非零状态退出.

我想要类似于set -e功能的东西,除了我不希望它在命令以非零状态退出退出.我想让它运行整个脚本,然后我想知道:

a)退出状态为0的所有命令都退出
-要么-
b)一个或多个以非零状态退出的命令

例如,给出以下内容

#!/bin/bash

command1  # exits with status 1
command2  # exits with status 0
command3  # exits with status 0

我想要运行所有三个命令.运行脚本后,我想要一个指示,即至少有一个命令以非零状态退出.

在ERR上设置陷阱:
#!/bin/bash

err=0
trap 'err=1' ERR

command1
command2
command3
test $err = 0 # Return non-zero if any command Failed

您甚至可能会进行一些内省以获取有关错误发生位置的数据:

#!/bin/bash
for i in 1 2 3; do
        eval "command$i() { echo command$i; test $i != 2; }"
done

err=0
report() {
        err=1
        echo -n "error at line ${BASH_LINENO[0]},in call to "
        sed -n ${BASH_LINENO[0]}p $0
} >&2
trap report ERR

command1
command2
command3
exit $err
原文链接:https://www.f2er.com/bash/383331.html

猜你在找的Bash相关文章