`find` 和 fzf(命令行模糊查找器)之间的不同计数结果
different count results between `find` and fzf (command-line fuzzy finder)
我真的无法理解为什么我在 find
和 fzf
之间看到不同的计数结果
$ find ./ -iname '*tablet*' -print | wc -l
2683
fzf
$
>tablet
2910/6024
我似乎缺少什么?
♂️ 忘记进行 fzf 搜索 exact
(因此默认为模糊搜索)
$
>'tablet
2683/6024
现在他们匹配了!
在 fzf 回购协议中它实际上指出
fzf will launch interactive finder, read the list from STDIN, and write the selected item to STDOUT.
find * -type f | fzf > selected
所以它在引擎盖下找到了
我真的无法理解为什么我在 find
和 fzf
$ find ./ -iname '*tablet*' -print | wc -l
2683
fzf
$
>tablet
2910/6024
我似乎缺少什么?
♂️ 忘记进行 fzf 搜索 exact
(因此默认为模糊搜索)
$
>'tablet
2683/6024
现在他们匹配了!
在 fzf 回购协议中它实际上指出
fzf will launch interactive finder, read the list from STDIN, and write the selected item to STDOUT.
find * -type f | fzf > selected
所以它在引擎盖下找到了