? | any single character, except a leading dot |
* | zero or more characters, except a leading dot |
[ ] | defines a class of characters ( - for range, ! to exclude) |
UNIX Examples:
[abc]?? | 3 character filename beginning with "a", "b", or "c". |
[1-9][A-Z] | 2 character filename starting with a number, and ending with an uppercase letter. |
[!A-Z]?? | 3 character filename that does not begin with an uppercase letter. |
*e[0-9]f | any file ending with "e", a single number, and "f". |
.
or slash /
.
@ | anything, including nothing |
# | a single numeric digit |
? | a single alphanumeric character |
[ ] | defines a class of characters ( - for range, no ! to exclude); :List file |
MPE Examples:
@fix@ | any filename containing the string "FIX" (MPE name space implied). |
./@fix@ | any filename containing lowercase "fix" (:Listfile only, POSIX name space). |
[ABC]?? | 3 character filename beginning with "A" "B", or "C" (:Listfile only). |