How Would I Tell the User That I’m Accepting "MSDOS Wildcards"?

I have a text input in which I am accepting wildcards. Namely the * which matches any number of characters and the ? which matches exactly 1 character.

Is there a name for this wildcard system, which I could use as shorthand?

C:\Temp>dir * /b
bar
baz
buz
foo

C:\Temp>dir b* /b
bar
baz
buz

C:\Temp>dir b? /b
File Not Found

C:\Temp>dir ba? /b
bar
baz