linux 解压 zip
时间: 2023-04-21 18:06:04 浏览: 87
linux 解压zip压缩包
在 Linux 中解压 ZIP 文件可以使用 unzip 命令。具体操作步骤如下:
1. 打开终端,进入要解压的 ZIP 文件所在的目录。
2. 输入 unzip 命令,后面跟上要解压的 ZIP 文件名。
3. 如果要将 ZIP 文件解压到指定目录,可以使用 -d 参数,后面跟上目标目录的路径。
例如,解压名为 test.zip 的 ZIP 文件到当前目录:
unzip test.zip
解压名为 test.zip 的 ZIP 文件到 /home/user 目录:
unzip test.zip -d /home/user
阅读全文