`fd-find`에는 내부 최대 깊이가 있나요?

`fd-find`에는 내부 최대 깊이가 있나요?

fn._mm*하위 디렉터리에 이름이 비슷한 파일이 많이 있습니다 .

...
./homedots/vim/plugged/YouCompleteMe/third_party/ycmd/third_party/rust-analyzer/share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvttss_i64.html
./homedots/vim/plugged/YouCompleteMe/third_party/ycmd/third_party/rust-analyzer/share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvtt_roundsd_i64.html
./homedots/vim/plugged/YouCompleteMe/third_party/ycmd/third_party/rust-analyzer/share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvt_roundss_i64.html
./homedots/vim/plugged/YouCompleteMe/third_party/ycmd/third_party/rust-analyzer/share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvtt_roundss_i64.html
./homedots/vim/plugged/YouCompleteMe/third_party/ycmd/third_party/rust-analyzer/share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvtsd_i64.html
./homedots/vim/plugged/YouCompleteMe/third_party/ycmd/third_party/rust-analyzer/share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvttsd_i64.html
./homedots/vim/plugged/YouCompleteMe/third_party/ycmd/third_party/rust-analyzer/share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvt_roundsd_i64.html
...

이 파일 찾기를 사용하면 find -iname "fn._mm*"문제 없이 찾을 수 있습니다. 실제로 위의 줄을 인쇄하는 방법은 다음과 같습니다.

그러나 사용될 때 fd-find:

fd fn._mm

또는

fd "fn._mm"

아무것도 생산되지 않습니다. 패턴 끝에 --glob스위치와 별표( )를 사용해도 결과가 나오지 않습니다.*

하지만, 위의 예에서 cd와 같이 몇 개의 디렉터리를 살펴보면 homedots/vim/plugged/YouCompleteMe/third_party/ycmd/third_party/rust-analyzer이제 내가 찾고 있는 파일을 찾을 수 있습니다 fd-find.

fd "fn._mm"
...
share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvttss_i64.html
share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvtt_roundsd_i64.html
share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvt_roundss_i64.html
share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvtt_roundss_i64.html
share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvtsd_i64.html
share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvttsd_i64.html
share/doc/rust/html/core/core_arch/x86_64/avx512f/fn._mm_cvt_roundsd_i64.html
...

--max-depth설정되어 있지 않고 fd-find그 사이에 심볼릭 링크가 없습니다( -L그래도 확인하기 위해 스위치를 확인했습니다).

제가 놓치고 있는 버그나 다른 제한 사항이 있나요?

현재 해결책은 확실하지 않은 경우 간단히 를 사용하는 find것이지만 fd-find저는 fd-find.

관련 정보