0

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?

Lhooq
  • 103

1 Answers1

4

You need to quote your pattern, otherwise it will be interpreted by the shell instead of tree.

This should work fine:

tree -p -P '*.ml'
pLumo
  • 27,991