3.2 zip / unzip

# 压缩
zip -r archive.zip /path/to/dir          # 递归压缩目录
zip file.zip file1.txt file2.txt         # 压缩多个文件

# 解压
unzip archive.zip # 解压到当前目录
unzip archive.zip -d /target/dir # 解压到指定目录

# 查看
unzip -l archive.zip # 查看压缩包内容