web-dev-qa-db-ja.com

OS X上のターミナルから7Zipを実行するためのインストール方法を教えてください。

私はMac上でコマンドラインから7Zipを実行できるようにしたいと思います。誰がこれを設定する方法についての指示を持っていますか?

175
Paul Sheldrake

p7Zip自作語 を使用してインストールするには、まず最初にbrewの式を更新してください。最新のp7Zipを入手しています。

$ brew update

自作を使用してp7Zipをインストールします。

$ brew install p7Zip

sputnikディレクトリ内のすべてのファイルを圧縮ファイルheed.7zに追加します。

$ 7z a heed.7z sputnik

heed.7zを解凍します。

$ 7z x heed.7z
314
Troy Harvey

7-Zipのダウンロードページ には、OS X用のオプションがいくつかあります。残念ながら、GUI付きであるか、現時点では利用できません。


あなたはしかしp7Zipをダウンロードすることができます。

p7Zipは、Unix/Linux用の7-Zipのコマンドラインバージョンです。独立系開発者によって開発されました。

これはLinuxのバイナリとして配布されており、ソースコードは Sourceforge です。

ソースコードをダウンロードし、アーカイブを展開したフォルダでmakeを実行してください。あなたのOS用に自動的に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
38
Daniel Beck

アーカイブを抽出するだけの場合は、 unar (The Unarchiverのコマンドラインバージョン)でも7Zipがサポートされています。

15
Lri