Linux 시스템에서 unzip 명령을 사용하고 ZIP 아래의 파일이 이미 로컬 디렉토리에 존재하면 대화식 질문이 표시됩니다 (ZIP의 파일을 Linux 시스템의 기존 파일로 바꾸려는 경우).
이 대화식 질문없이 unzip 명령을 사용하는 방법은 무엇입니까?
[@superuser]# ls -ltr
total 0
-rw-r--r-- 1 root root 0 Nov 15 15:13 all_my_files1
-rw-r--r-- 1 root root 0 Nov 15 15:13 all_my_files2
[@superuser]# unzip MY_FILES.zip
Archive: MY_FILES.zip
replace all_my_files1.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: A
inflating: all_my_files1.txt
inflating: all_my_files2.txt
-q
그러나 압축 해제중인 파일 목록이 unzip에 표시되지 않습니다.