Which command recursively finds files ending in .txt regardless of letter case from the current directory?
.txt
find . -type d -name "*.txt"
find . -iname "*.txt"
find . -name "*.txt"
whereis *.txt