zip [zipファイル名] [元ファイル]
===== オプション =====
|-r |ディレクトリごと圧縮する場合は、-rを指定する|
|-e |暗号化。パスワード指定|
|-P [パスワード]|暗号化のパスワードをコマンドラインで指定|
===== コマンド例 =====
$ zip test.zip ./*
adding: a.txt (stored 0%)
adding: b.txt (stored 0%)
adding: c.txt (stored 0%)
$ unzip -l test.zip
Archive: test.zip
Length Date Time Name
-------- ---- ---- ----
4 05-09-14 11:10 a.txt
4 05-09-14 11:10 b.txt
4 05-09-14 11:10 c.txt
-------- -------
12 3 files
{{tag>Unixコマンド 圧縮・復元・パックアップ}}