Bash:我想运行一个命令并通过一些过滤器来管理结果,但如果命令失败,我想返回命令的错误值,而不是过滤器的无聊返回值:
例如.:
if !(cool_command | output_filter); then handle_the_error; fi
要么:
set -e cool_command | output_filter
在这两种情况下,这是我关心的cool_command的返回值 – 第一种情况下的’if’条件,或者在第二种情况下退出脚本.
有没有一些干净的成语这样做?
使用PIPESTATUS内置变量.
原文链接:https://www.f2er.com/bash/383484.html从男人bash:
PIPESTATUS
An array variable (see Arrays below) containing a list of exit status values from the processes in the most-recently-executed foreground pipeline (which may contain only a single command).