:t
excludes the path.
|
character
represents the pipe.
Wildcard expression | Matches |
* | Zero or more characters |
? | Exactly one character |
[xyz] | One character in the set |
[a-m] | One character in the range from |
[A-Za-z] | All alphabetic characters |
[0-9] | All numeric characters |
{alpha,beta,a,b} | A set of options, |
{aa,bb[1-3]} |
|