I have the following directory:
❯ tree -p
.
└── [drwxr-xr-x] dir
├── [-rw-r--r--] a.ml
├── [-rw-r--r--] a.o
├── [-rw-r--r--] b.ml
└── [-rw-r--r--] b.o
If I try to filter tree can't find anything:
❯ tree -p -P *.ml
zsh: no matches found: *.ml
❯ tree -p -P *ml
zsh: no matches found: *ml
And if I go in the directory dir:
❯ tree -p -P *.ml
b.ml [error opening dir]
0 directories, 0 files
❯ tree -p -P *ml
b.ml [error opening dir]
0 directories, 0 files
Am I not seeing something obvious here? Why does it fail and how can I fix it?