免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: hjxhjh
打印 上一主题 下一主题

求助:条件判断中[ ] 与[[ ]] 有什么区别? [复制链接]

论坛徽章:
0
11 [报告]
发表于 2012-06-25 18:03 |只看该作者
受教了, 一直都没有留意这个问题

论坛徽章:
0
12 [报告]
发表于 2012-06-26 09:32 |只看该作者
学习,茅塞顿开...
“字符串比较时,最好使用[[]]  否则可能出现异常”这句话总结的挺好

论坛徽章:
0
13 [报告]
发表于 2012-06-26 12:35 |只看该作者
bash 如果真进化到了模糊级别,有【可能】的地步,那真是惊天地,泣鬼神了...

分明就是用户偷懒,开发者不得不妥协的一个鸡肋而已. 窃以为Bash可以用,但最好不要专门学.

论坛徽章:
0
14 [报告]
发表于 2012-06-26 13:19 |只看该作者
“字符串比较时,最好使用[[]]  否则可能出现异常”

天啊, 明明有详细的规则的, 竟然"可能异常", nnnd, 诲人不倦的烂书!

论坛徽章:
13
15-16赛季CBA联赛之同曦
日期:2016-01-28 19:52:032015亚冠之北京国安
日期:2015-10-07 14:28:19NBA常规赛纪念章
日期:2015-05-04 22:32:03处女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午马
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56狮子座
日期:2013-09-08 08:37:52
15 [报告]
发表于 2012-06-26 17:19 |只看该作者

■■■求助:条件判断中[ ] 与[[ ]] 有什么区别? ■■■

本帖最后由 ulovko 于 2012-06-26 17:26 编辑

FROM: Wiley.Linux.Command.Line.and.Shell.Scripting.Bible.May.2008.pdf
The test command (PAGE 267)
The format of the test command is pretty simple:
  1. test condition
复制代码
The condition is a series of parameters and values that the test command evaluates. When
used in an if-then statement, the test command looks like this:
  1. if test condition
  2. then
  3. commands
  4. fi
复制代码
The bash shell provides an alternative way of declaring the test command in an if-then
statement:
  1. if [ condition ]
  2. then
  3. commands
  4. fi
复制代码
The square brackets define the condition that’s used in the test command. Be careful; you must
have a space after the first bracket, and a space before the last bracket or you’ll get an error
message.

There are three classes of conditions the test command can evaluate:
■ Numeric comparisons
■ String comparisons
■ File comparisons

Using double brackets (PAGE 284)
The double bracket command provides advanced features for string comparisons. The double
bracket command format is:
  1. [[ expression ]]
复制代码
The double bracketed expression uses the standard string comparison used in the test command.
However, it provides an additional feature that the test command doesn’t, pattern matching.

In pattern matching, you can define a regular expression (discussed in detail in Chapter 17) that’s
matched against the string value:
  1. $ cat test24
  2. #!/bin/bash
  3. # using pattern matching
  4. if [[ $USER == r* ]]
  5. then
  6. echo "Hello $USER"
  7. else
  8. echo "Sorry, I don’t know you"
  9. fi
  10. $ ./test24
  11. Hello rich
  12. $
复制代码
The double bracket command matches the $USER environment variable to see if it starts with the
letter r. If so, the comparison succeeds, and the shell executes the then section commands.

下载:http://www.itpub.net/thread-1006351-1-1.html

论坛徽章:
0
16 [报告]
发表于 2012-06-26 18:00 |只看该作者
这个不错,学习了
Third-Edition 发表于 2012-06-23 20:18
来自ABS
使用[[ ... ]]条件判断结构, 而不是[ ... ], 能够防止脚本中的许多逻辑错误. 比如, &&, ||,  操作 ...

论坛徽章:
0
17 [报告]
发表于 2012-06-27 14:56 |只看该作者
路过学习了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP