LoginSignup
11
9

More than 5 years have passed since last update.

macOSでzipファイルを作って鍵をつける方法

Last updated at Posted at 2016-03-10

手順

  1. zipファイルを作る
  2. zipファイルに鍵をつける

1. zipファイルを作る

test.txtからtest.zipを作りたいとします。

terminalを起動し、以下の1行目を実行。

bash
zip test.zip test.txt
adding: test.txt (deflated 37%)

2. zipファイルに鍵をつける

以下の1行目を実行。
パスワードを聞かれるので、2回入力する。

bash
zipcloak test.zip
Enter password: 
Verify password: 
encrypting: test.txt

参考サイトなど

特別なソフトなし!Macでパスワードつきでzip圧縮する方法

11
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
9