zip 은 여러파일을 묶어 압축 할 수 있는 Utility 프로그램으로 zip file 을 푸는 명령어인 unzip 과 함께 자주 사용하는 명령어.
하위 특정 directory를 압축 할 때는 -r 을 사용한다.
zip -r target.zip /user/JHK/test
위의 명령으로 test directory 와 그 아래 있는 파일들을 target.zip 으로 압축 할 수 있다.
압축을 해제 할 때는 unzip 을 사용하는데, -d Option을 사용하여 원하는 directory에 압축된 내용을 풀 수 있다.
unzip target.zip -d /user/JHK/new
또 자주 사용되는 명령으로 cp 가 있다. 특정 directory를 copy 해서 특정 목적지로 복사 할 때 사용한다.
cp -r targetdir /test/b/
이 결과는 targetdir directory를 /test/b/ 아래에 복사 시킨다.
'Terminology' 카테고리의 다른 글
[algorithm] hash function (0) | 2023.07.11 |
---|---|
[gcc] opengl 컴파일 하기 (0) | 2023.07.11 |
[Camera] F-stop (0) | 2023.07.10 |
[CIS] Optic 구조 (2) | 2023.07.10 |
[Logic] Gate (0) | 2023.07.10 |