Open
Description
Looking at the Pattern Matching docs https://github.com/minio/docs/blob/main/source/reference/minio-mc.rst#pattern-matching i barely can see the point.
Let's take the first example:
Pattern | Text | Match Result
abc* | ab | Match
it does not make sense to me, as the pattern starts with abc
and the text is even shorter.
Another example from the docs:
Pattern | Text | Match Result
abc*c | abcd | Match
also confuses me a lot - the pattern ends with c
and the text does not.