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. 

관련 정보