哪个命令只会将当前目录中的 .log 文件名保存到 log_list.txt?
.log
log_list.txt
ls * > log_list.txt
ls *.log
ls *.log > log_list.txt
cat log_list.txt > *.log