bourne shell 中带括号和不带括号的 if 语句有什么区别?

发布于 2024-11-30 10:55:51 字数 223 浏览 2 评论 0原文

例如:

if $input = 'y'

原因

./test.sh:第 5 行:y:找不到命令

if [ $tmp = 'y' ]

不会导致错误?

无法计算条件的 if 语句的目的是什么?

For instance:

if $input = 'y'

causes

./test.sh: line 5: y: command not found

While

if [ $tmp = 'y' ]

causes no error?

What is the purpose of an if statement that cannot evaluate conditions?

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

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

发布评论

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

评论(1

征棹 2024-12-07 10:55:51

if 不评估任何内容。它只是执行谓词程序并对其返回代码进行操作。 [ 实际上是一个执行一些条件并返回适当的返回代码的程序。

如果不需要 else 分支,[ 可以与不带 if 的 oneliner 一起使用:

$ [ 1 -eq 2 ] && echo "foo"
# -> no output

if doesn't evaluate anything. It simply executes the predicate program and acts on its return code. [ is actually a program that does a handful of conditions, and returns an appropriate return code.

[ can be used with oneliners without if, if you don't need the else branch:

$ [ 1 -eq 2 ] && echo "foo"
# -> no output
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文