Why is it forcing me to use '
.*/
'?
Da documentação de find
:
-regex pattern
File name matches regular expression pattern. This is a match on the whole path, not a search. For example, to match a file named./fubar3
, you can use the regular expression.*bar.
or.*b.*3
, but notf.*r3
.