현재 디렉터리의 .log 파일 이름만 log_list.txt에 저장하는 명령은 무엇인가요?
.log
log_list.txt
ls *.log
ls *.log > log_list.txt
ls * > log_list.txt
cat log_list.txt > *.log