在Linux中,如果您想列出当前目录以及子目录下所有扩展名为“.txt”的文件,那么您可以使用的命令是( ).
ls *.txt
find –name “.txt”
ls –d .txt
find . “.txt”