본문 바로가기
Linux

Mac - Zip with password, 암호로 압축하기

by 올엠 2022. 12. 16.
반응형

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
...
반응형