OS/2 understands two wildcard characters:
*
) character matches any sequence
of characters (no character, one character, or many characters).
For example, h*e
will match he
,
house
, and home
.
?
) matches exactly one character.
For example, h??e
will match home
, but
not he
or house
.
h*e.?xt
will match house.txt
.
Note that as opposed to DOS, the dot (.
) in file names
is not a special character, unless you are working with files on the
FAT
file system.