使用 FIND 时 -name 和 -iname 有什么区别

使用 FIND 时 -name 和 -iname 有什么区别

好吧,这个问题说明了一切,我都见过

find -name 

find -iname 

到处使用,没有明显的图案。

有人可以解释一下这些差异,也许可以举个例子来澄清吗?

答案1

来自 GNUfind手册页:

   -iname pattern
          Like -name, but the match is case insensitive.  For example, the
          patterns `fo*' and `F??' match  the  file  names  `Foo',  `FOO',
          `foo',  `fOo',  etc. 

相关内容