현재 디렉터리에서 대소문자와 관계없이 .txt로 끝나는 파일을 재귀적으로 찾는 명령은 무엇인가요?
.txt
find . -name "*.txt"
find . -iname "*.txt"
find . -type d -name "*.txt"
whereis *.txt