mirror of https://github.com/CrimsonTome/tldr.git
822 B
822 B
7z
높은 압축률을 보여주는 파일 압축 프로그램. 더 많은 정보: https://www.7-zip.org/.
- 파일 또는 디렉토리 압축하기:
7z a {{archived.7z}} {{path/to/file_or_directory}}
- 존재하는 압축파일 암호화(헤더를 포함한):
7z a {{encrypted.7z}} -p{{password}} -mhe=on {{archived.7z}}
- 기본 디렉토리 구조로 존재하는 7z 파일 추출:
7z x {{archived.7z}}
- 사용자정의 출력 경로로 압축 출력 :
7z x {{archived.7z}} -o{{path/to/output}}
- 표준출력으로 압축 추출:
7z x {{archived.7z}} -so
- 특정 압축 타입으로 추출:
7z a -t{{zip|gzip|bzip2|tar}} {{archived.7z}} {{path/to/file_or_directory}}
- 사용가능한 압축 타입 리스트:
7z i
- 압축 파일의 내용 리스트:
7z l {{archived.7z}}