如何在bash中完成逻辑或

发布于 2024-09-09 01:52:49 字数 79 浏览 3 评论 0原文

我想让一个命令仅在前一个命令的退出状态不为 0 时才执行。

即 命令 1 ^ 命令 2 其中命令 2 仅在命令 1 失败时执行。

I'd like to have a command only execute if the preceding command's exit status was not 0.

i.e.
Command 1 ^ Command 2
where Command 2 is only executed when Command 1 fails.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

土豪 2024-09-16 01:52:49

为此,请使用双管道 (||) 运算符。

touch /asdf/fdasfds/fdasfdas || echo "Couldn't touch."

仅当第一个命令返回非零时才执行第二个命令,与您指定的完全相同。

For this, use the double-pipe (||) operator.

touch /asdf/fdasfds/fdasfdas || echo "Couldn't touch."

The second command is only executed when the first command returns non-zero, exactly as you specified.

倥絔 2024-09-16 01:52:49

我认为应该提到的是,OR 与 XOR(“异或”)的含义不同。请参阅下面的真值表。

       "or"          "xor"
P  Q  (( $P || $Q ))  (( ($P && ! $Q) || (! $P && $Q) ))
0  0  0               0 
0  1  1               1
1  0  1               1
1  1  1               0

I think it should be mentioned that that OR doesn't have the same meaning as XOR ("exclusive or"). See truth table below.

       "or"          "xor"
P  Q  (( $P || $Q ))  (( ($P && ! $Q) || (! $P && $Q) ))
0  0  0               0 
0  1  1               1
1  0  1               1
1  1  1               0
冷了相思 2024-09-16 01:52:49

这应该有效:

command1 || command2

This should work:

command1 || command2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文