圧縮
zip圧縮
zip [オプション] アーカイブ 圧縮するファイル or ディレクトリ
// ディレクトリを圧縮
$ zip -r tempdirectory.zip tempdirectory
adding: tempdirectory/ (stored 0%)
adding: tempdirectory/test (stored 0%)
$
// ファイルを圧縮
$ zip test.zip test
adding: test (stored 0%)
$
zip解凍
unzip zipファイル
$ unzip test.zip
Archive: test.zip
extracting: test
$
解凍


コメント