- 论坛徽章:
- 93
|
它是bash内建测试命令的操作符,所以要在bash man里找:
man bash:- [[ expression ]]
- Return a status of 0 or 1 depending on the evaluation of the conditional expression expression. Expres-
- sions are composed of the primaries described below under CONDITIONAL EXPRESSIONS. Word splitting and
- pathname expansion are not performed on the words between the [[ and ]]; tilde expansion, parameter and
- variable expansion, arithmetic expansion, command substitution, process substitution, and quote removal
- are performed. Conditional operators such as -f must be unquoted to be recognized as primaries.
- When used with [[, The < and > operators sort lexicographically using the current locale.
- When the == and != operators are used, the string to the right of the operator is considered a pattern
- and matched according to the rules described below under Pattern Matching. If the shell option nocase-
- match is enabled, the match is performed without regard to the case of alphabetic characters. The
- return value is 0 if the string matches (==) or does not match (!=) the pattern, and 1 otherwise. Any
- part of the pattern may be quoted to force it to be matched as a string.
- An additional binary operator, =~, is available, with the same precedence as == and !=. When it is
- used, the string to the right of the operator is considered an extended regular expression and matched
- accordingly (as in regex(3)). The return value is 0 if the string matches the pattern, and 1 otherwise.
- If the regular expression is syntactically incorrect, the conditional expression鈥檚 return value is 2.
- If the shell option nocasematch is enabled, the match is performed without regard to the case of alpha-
- betic characters. Any part of the pattern may be quoted to force it to be matched as a string. Sub-
- strings matched by parenthesized subexpressions within the regular expression are saved in the array
- variable BASH_REMATCH. The element of BASH_REMATCH with index 0 is the portion of the string matching
- the entire regular expression. The element of BASH_REMATCH with index n is the portion of the string
- matching the nth parenthesized subexpression.
复制代码 |
|