개인 자료 정리 홈페이지 입니다.

Note > 리눅스 명령어 모음gzip unzipBy a3040, Published on Invalid Date

gzip, gunzip, zcat - compress or expand files

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


파일을 압축하거나 해제 하기 때문에 파일을 묶는 tar 파일과 함께 사용되기도 합니다.


파일 압축하기 : gzip [압축할 파일 이름]

압축 파일 해제하기 : gzip -d [압축 해제할 파일 이름]


파일 해제하기 : unzip [압축 해제할 파일 이름]

파일 목록 출력하기 : unzip -l [압축 파일 이름]

특정 파일 해제하기 : unzip [압축 해제할 파일 이름] [해제할 파일 이름]