我有一些非常大的 zip 文件,其中包含数千个文件。我只需要解压其中的一两个文件。在 Windows 中,可以使用 WinRAR 或 WinZIP 等最常用的程序轻松完成此操作。但在 Mac OS X 中,我找不到任何具有相同功能的软件。
答案1
unzip archive.zip path/inside/zip
添加-j
(垃圾路径)以删除子目录。
使用zipinfo
(相当于unzip -Z
) 或unzip -l
列出文件。
答案2
答案3
在终端:brew install p7zip
然后使用以下方法解压缩:7z x [path-of-file]
或者先cd [path of the file]
然后7z x [file]