评估bash“\u0026\u0026”退出代码行为

前端之家收集整理的这篇文章主要介绍了评估bash“\u0026\u0026”退出代码行为前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们最近有一次关于bash的经历,即使我们找到了一个解决方案,它仍然在扭曲我的想法. bash如何评估&&表达式的返回码?

执行此脚本,因为myrandomcommand不存在而失败:

  1. #!/bin/bash
  2.  
  3. set -e
  4.  
  5. echo "foo"
  6. myrandomcommand
  7. echo "bar"

结果是预期的一个:

  1. ~ > bash foo.sh
  2. foo
  3. foo.sh: line 6: myrandomcommand: command not found
  4. [exited with 127]
  5. ~ > echo $?
  6. 127

但是使用&&&&表达:

  1. #!/bin/bash
  2.  
  3. set -e
  4.  
  5. echo "foo"
  6. myrandomcommand && ls
  7. echo "bar"

ls语句未执行(因为第一个语句失败并且不评估第二个语句),但脚本的行为非常不同:

  1. ~ > bash foo.sh
  2. foo
  3. foo.sh: line 6: myrandomcommand: command not found
  4. bar # ('bar' is printed now)
  5. ~ > echo $?
  6. 0

我们发现使用括号(myrandomcommand&& ls)之间的表达式,它按预期工作(如第一个例子),但我想知道原因.

你可以在bash的手册页中阅读:
  1. -e Exit immediately if a simple command (see SHELL GRAMMAR above) exits with a
  2. non-zero status. The shell does not exit if the command that fails is part of the
  3. command list immediately following a while or until keyword,part of the test in
  4. an if statement,part of a && or || list,or if the command's return value is being
  5. inverted via !. A trap on ERR,if set,is executed before the shell exits.

猜你在找的Bash相关文章