What is the function of a single asterisk (*) in an ML exclusion pattern?
What is the function of a single asterisk (*) in an ML exclusion pattern?
A single asterisk (*) in an ML exclusion pattern will match any number of characters, including none. This does not include separator characters, such as backslashes (\) or forward slashes (/), which are used to separate portions of a file path.
In glob, single asterisk is used to match any number of characters including none while not matching beyond path separators (\ or /) and double asterisks are used to recursively match zero or more directories that fall under the current directory.
B is correct
B is correct
B is correct
Correct for b
b is the answer