从 find 命令中进行不区分大小写的搜索?

从 find 命令中进行不区分大小写的搜索?

我不知道如何使用该find命令进行不区分大小写的搜索。

我试过

find . -name -i pattern

但它不起作用。

答案1

用这个:

find . -iname PatTeRn -print

答案2

我认为是:find . -iname pattern

man find

-iname pattern
       Like  -name, but the match is case insensitive.

答案3

sudo updatedb

locate -i "nameofthefile"

nameofthefile不应带引号。

相关内容