FINDを使用するときの-nameと-inameの違いは何ですか?

FINDを使用するときの-nameと-inameの違いは何ですか?

まあ、この質問がすべてを教えてくれますね。私はすべて見ました。

find -name 

そして

find -iname 

どこでも使用され、明確なパターンはありません。

誰かが違いを説明し明確にするために例を挙げることができますか?

ベストアンサー1

GNUのfindマニュアルページから:

   -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. 

おすすめ記事