I have a file foo in the current directory. Then I run the following commands:
find . -regex 'foo'finds nothingfind . -regex 'foo.*'finds nothingfind . -regex '.*foo'finds the file
I would expect that either of these commands should yield a positive result.
find command version is 4.4.2