- 论坛徽章:
- 13
|
■■■求助:条件判断中[ ] 与[[ ]] 有什么区别? ■■■
本帖最后由 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: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:- if test condition
- then
- commands
- fi
复制代码 The bash shell provides an alternative way of declaring the test command in an if-then
statement:- if [ condition ]
- then
- commands
- 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: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:- $ cat test24
- #!/bin/bash
- # using pattern matching
- if [[ $USER == r* ]]
- then
- echo "Hello $USER"
- else
- echo "Sorry, I don’t know you"
- fi
- $ ./test24
- Hello rich
- $
复制代码 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 |
|