bash脚本:如何在管道中保存第一个命令的返回值?

前端之家收集整理的这篇文章主要介绍了bash脚本:如何在管道中保存第一个命令的返回值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Bash:我想运行一个命令并通过一些过滤器来管理结果,但如果命令失败,我想返回命令的错误值,而不是过滤器的无聊返回值:

例如.:

if !(cool_command | output_filter); then handle_the_error; fi

要么:

set -e
cool_command | output_filter

在这两种情况下,这是我关心的cool_command的返回值 – 第一种情况下的’if’条件,或者在第二种情况下退出脚本.

有没有一些干净的成语这样做?

使用PIPESTATUS内置变量.

从男人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).

原文链接:https://www.f2er.com/bash/383484.html

猜你在找的Bash相关文章