반응형
Mac에서 압축을 마우스 우클릭을 통해 GUI 상으로는 간편하게 할 수 있지만,
비밀번호 같은 특정한 조건이 필요한 경우 Terminal(터미널)를 통해서 진행해야 한다.
zip -er <압축파일이름> <압축할 경로>
e 옵션이 바로 암호를 사용할 수 있는 옵션으로 터미널에서 실행하라고 나와 있다.
-e, --encrypt
Encrypt the contents of the zip archive using a password which is entered on the terminal in response to a
prompt (this will not be echoed; if standard error is not a tty, zip will exit with an error). The password prompt
is repeated to save the user from typing errors.
r 옵션은 재귀 옵션으로 하위 경로를 포함한다는 의미
-r, --recurse-paths
Travel the directory structure recursively
콘솔 화면
$ zip -er backup.zip ~/Documents/zip
Enter password:
Verify password:
adding: Users/han/Documents/zip/xxx.xxx
...
반응형
'Linux' 카테고리의 다른 글
Linux - 백그라운드 실행 nohup 과 & 이해, Python 사용법 (0) | 2024.02.17 |
---|---|
Nginx - Reverse Proxy로 활용하기 (0) | 2022.12.25 |
MariaDB/MySQL - Database 파일 위치 변경하기 (0) | 2022.12.14 |
certbot - LetsEncrypt으로 Nginx에 무료 SSL 적용 (0) | 2022.12.13 |
Azure - Linux Disk Add in VM (0) | 2022.12.13 |