1. 압축하기
7z a test.zip test
2. 압축 풀기
!7z x test.zip -ohi
3. 옵션
a : add, 압축하기
d : delete
e : extract
l : list
t : Test
u : update
x : extract with full paths
7zip 압축방법
리눅스에서 압축하는 방법은 예전에 올린 exec(zip)과 exec(unzip) 방법이 있지만, 당연히 윈도우에서는 위와같은 방법이 먹히질않는다 그래서 찾아보니 7zip을 path로 연결만 하면 (하는 방법은 다음
88240.tistory.com
https://araikuma.tistory.com/122
[Linux] 압축 파일 관리 - 7z 압축하기, 압축 풀기
7z 압축하기 명령어 7zr a {압축 파일명}.zip {압축할 파일 혹은 디렉토리1} {압축할 파일 혹은 디렉토리2}... 파일 압축하기 test1, test2, test3 파일을 라고 test.7z 파일명으로 압축을 하는 명령어는 다음
araikuma.tistory.com
https://bosungs2y.tistory.com/418
[Linux/리눅스] zip / tar / tar.gz / 7.zip 압축 및 압축 풀기 명령어
| ZIP 파일 압축 및 압축해제 1) 압축하기 zip {압축 파일명}.zip {압축할 파일1} {압축할 파일2} 1) 단일 파일 압축하기 $ zip bbo.zip bbo.txt 2) /tmp/경로 전체 파일 압축하기 $ zip bbo.zip /tmp/* 3) 현재..
bosungs2y.tistory.com