如何安装 7zip 以便可以从 OS X 上的终端运行它

如何安装 7zip 以便可以从 OS X 上的终端运行它

我希望能够从 Mac 上的命令行运行 7zip。有人能指导如何设置吗?

答案1

安装p7zip使用自制,首先更新你的brew公式以确保您获得最新的p7zip

$ brew update

使用 Homebrew 安装p7zip

$ brew install p7zip

将目录中的所有文件添加sputnik到压缩文件中heed.7z

$ 7z a heed.7z sputnik

解压缩heed.7z

$ 7z x heed.7z

答案2

7-zip 下载页面,OS X 有几种选择。不幸的是,它们似乎带有 GUI,或者目前不可用。


但是您可以下载 p7zip。

p7zip 是 7-Zip 的命令行版本,适用于 Unix/Linux,由独立开发人员制作

它以 Linux 二进制文件和源代码形式分发在 Sourceforge 上

下载源代码,并make在解压存档的文件夹中运行。它将自动7za为您的操作系统构建。您可能需要 Xcode 及其命令行工具才能运行此功能。

$ cd Downloads/p7zip_9.20.1
$ make
[...]
$ cd bin
$ ls
7za
$ ./7za 

7-Zip (A) [64] 9.20  Copyright (c) 1999-2010 Igor Pavlov  2010-11-18
p7zip Version 9.20 (locale=de_DE.UTF-8,Utf16=on,HugeFiles=on,4 CPUs)

Usage: 7za <command> [<switches>...] <archive_name> [<file_names>...]
       [<@listfiles...>]

<Commands>
  a: Add files to archive
  b: Benchmark
  d: Delete files from archive
  e: Extract files from archive (without using directory names)
  l: List contents of archive
  t: Test integrity of archive
  u: Update files to archive
  x: eXtract files with full paths
<Switches>
  -ai[r[-|0]]{@listfile|!wildcard}: Include archives
  -ax[r[-|0]]{@listfile|!wildcard}: eXclude archives
  -bd: Disable percentage indicator
  -i[r[-|0]]{@listfile|!wildcard}: Include filenames
  -m{Parameters}: set compression Method
  -o{Directory}: set Output directory
  -p{Password}: set Password
  -r[-|0]: Recurse subdirectories
  -scs{UTF-8 | WIN | DOS}: set charset for list files
  -sfx[{name}]: Create SFX archive
  -si[{name}]: read data from stdin
  -slt: show technical information for l (List) command
  -so: write data to stdout
  -ssc[-]: set sensitive case mode
  -t{Type}: Set type of archive
  -u[-][p#][q#][r#][x#][y#][z#][!newArchiveName]: Update options
  -v{Size}[b|k|m|g]: Create volumes
  -w[{path}]: assign Work directory. Empty path means a temporary directory
  -x[r[-|0]]]{@listfile|!wildcard}: eXclude filenames
  -y: assume Yes on all queries

$ ./7za a 7za.7z 7za 

7-Zip (A) [64] 9.20  Copyright (c) 1999-2010 Igor Pavlov  2010-11-18
p7zip Version 9.20 (locale=de_DE.UTF-8,Utf16=on,HugeFiles=on,4 CPUs)
Scanning

Creating archive 7za.7z

Compressing  7za      

Everything is Ok

$ ls
7za    7za.7z

答案3

如果你只需要提取档案,乌纳尔(The Unarchiver 的命令行版本)也支持 7zip。

答案4

p7zip不再维护。它多年来一直处于 17.xx 版本。7zip 处于 23.xx 版本。它缺少重要功能,例如利用所有 CPU 核心(7zip 17.xx 是单核)

brew install sevenzip将安装仍由原始开发人员维护的软件包(https://7-zip.org)。

使用时,7zz --help

相关内容