哪个命令可以从当前目录开始递归查找文件名以 .txt 结尾且不区分大小写的文件?
.txt
find . -name "*.txt"
find . -iname "*.txt"
whereis *.txt
find . -type d -name "*.txt"