gpt4 book ai didi

linux - bash echo 在 grep 什么都不返回后不起作用

转载 作者:行者123 更新时间:2023-12-05 03:32:31 27 4
gpt4 key购买 nike

我知道人们通常在 Linux 命令提示符(而不是脚本)中使用 grep。我碰巧将 grep 放在脚本中并遇到了一个奇怪的情况。如果 grep 命令没有返回任何内容,则下一行 echo 不起作用。下面是脚本。

grep "abc" /home/testuser/myapp.log
echo "abc"

这是 grep 的正常行为吗?如果是,为什么?

最佳答案

您的脚本中似乎启用了 set -e

通常,grep 的退出状态如果选择了一行则为 0,如果没有选择任何行则为 1,如果发生错误则为 2。但是请注意,如果使用 -q 或 --quiet 或 --silent 并选择了一行,即使发生错误,退出状态也是 0。在您的情况下,如果在 /home/testuser/myapp.log 中找不到 abcgrep 将返回 1。

bash shell 通常会执行脚本中的下一行,即 echo "abc" 即使 grep 返回退出状态1. 但是,如果启用 set -ebash 将不会再执行脚本中的任何行。

来自 bash 联机帮助页:

-e      Exit immediately if a pipeline (which may consist of a single simple command), a list, or  a  compound  command
(see SHELL GRAMMAR above), exits with a non-zero status. The shell does not exit if the command that fails is
part of the command list immediately following a while or until keyword, part of the test following the if or
elif reserved words, part of any command executed in a && or || list except the command following the final &&
or ||, any command in a pipeline but the last, or if the command's return value is being inverted with !. If a
compound command other than a subshell returns a non-zero status because a command failed while -e was being
ignored, the shell does not exit. A trap on ERR, if set, is executed before the shell exits. This option ap‐
plies to the shell environment and each subshell environment separately (see COMMAND EXECUTION ENVIRONMENT
above), and may cause subshells to exit before executing all the commands in the subshell.

If a compound command or shell function executes in a context where -e is being ignored, none of the commands
executed within the compound command or function body will be affected by the -e setting, even if -e is set and
a command returns a failure status. If a compound command or shell function sets -e while executing in a con‐
text where -e is ignored, that setting will not have any effect until the compound command or the command con‐
taining the function call completes.

关于linux - bash echo 在 grep 什么都不返回后不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70468619/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com