일상 코딩
[ubuntu / Linux] zip, unzip 본문
728x90
1. 설치
sudo apt-get install zip unzip
2.zip 방법
$ zip [압축파일 이름].zip [압축할 파일 or 디렉토리] [압축할 파일 or 디렉토리] ...
$ zip -r [압축파일 이름].zip [압축할 파일 or 디렉토리] ... # 디렉토리 압축
$ zip -j [압축파일 이름].zip [압축할 파일 or 디렉토리] ... # 디렉토리 이름 제외하고 압축
$ zip -u [압축파일 이름].zip [압축할 파일 or 디렉토리] ... # 변경되었거나 새로운 파일만 압축
3.unzip 방법
$ unzip [압축파일 이름].zip
$ unzip [압축파일 이름].zip -d [압축 푸는 위치] # 압축이 풀리는 위치를 특정할 수 있다.
$ unzip -d target_directory zip_file # 디렉토리에 압축을 푼다
$ unzip -j hope.zip # 현재 디렉토리만 추출
$ unzip -o -d target_directory zip_file # 프롬프트없이 모든 파일 덮어씀
$ unzip -n -d target_directory zip_file # 파일을 덮어 쓰지 마십시오.
출처.
https://changhoi.github.io/posts/linux/zip-command/
728x90