現在のディレクトリから、英字の大文字・小文字を区別せず、.txt で終わるファイルを再帰的に検索するコマンドはどれですか?
.txt
find . -name "*.txt"
whereis *.txt
find . -type d -name "*.txt"
find . -iname "*.txt"