본문 바로가기
개발/linux

linux unzip 사용법(압축 풀기), 설명

by amkorousagi 2022. 10. 21.

linux unzip

사용하는 이유

압축된 파일을 풀기 위해

기본 사용법(압축 풀기)

unzip <zip file> -d <destination directory>

특정 파일 제외하고 압축 풀기

unzip <zip file> -x <file to exclude> -d <destination directory>
unzip cproject.zip -x *.o -d mydirectoy

linux man page 설명

unzip - list, test and extract compressed files in a ZIP archive

+zip과 마찬가지로 regex를 사용할 수 있다.

(해석)

unzip - 하나의 ZIP 아카이브 안의 압축된 파일을 나열하고 테스트하고 추출합니다.

 

출처:

 

 

unzip(1) - Linux man page

unzip(1) - Linux man page Name unzip - list, test and extract compressed files in a ZIP archive Synopsis unzip [-Z] [-cflptTuvz[abjnoqsCDKLMUVWX$/:^]] file[.zip] [file(s) ...] [-x xfile(s) ...] [-d exdir] Description unzip will list, test, or extract files

linux.die.net

 

댓글