分类: LINUX
2015-02-09 13:26:28
| Wildcard | Meaning | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
* |
Matches any characters |
||||||||||
|
? |
Matches any single character |
||||||||||
|
[characters] |
Matches any character that is a member of the set characters. The set of characters may also be expressed as a POSIX character class such as one of the following:
|
||||||||||
|
[!characters] |
Matches any character that is not a member of the set characters |