I am using a find command like
find . -name "*<phrase>*.ext"
This command works fine, when phrase has no spaces. However, if I try something like
find . -name "*A phrase in the file name*.txt"
it will never turn up any results even though I know the file is there.
Is this the intended behavior of find? What can I do to achieve my desired result?
EDIT: Nevermind! It was an issue with my spelling on the specific file, after I RECHECKED it 6 times and didn't notice the difference. I feel pretty stupid about that!