`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スイッチとアスタリスク()を使用しても結果は表示されません。*

しかし、、上記の例のように、いくつかのディレクトリを見ると、cdhomedots/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

ベストアンサー1

おすすめ記事