7zipをインストールして、OS Xのターミナルから実行できるようにする方法


回答:


327

Homebrewを使用してp7zipをインストールするには、最初に式を更新して、最新のものを取得するようにします。brewp7zip

$ brew update

Homebrewを使用してインストールしp7zipます。

$ brew install p7zip

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

$ 7z a heed.7z sputnik

解凍heed.7z

$ 7z x heed.7z

10
macportsでも同じ:sudo port install p7zip問題ありません
アラン

1
@AlanBlount MacPortsの指示を追加してくれてありがとう。
トロイハーベイ14

1
@ pal4life Cellarディレクトリの権限を確認してください。
トロイハーベイ14年

1
@MaciekSemikファイル名の例。
スリダールカタカム

2
私は、コマンドがp7zipのされていないことを見つけるためにここに来ていた、それが7zは...ある
MikeP

40

7-zipダウンロードページには、OS Xのいくつかのオプションがあります。残念ながら、GUIを使用しているか、現在利用できないようです。


ただし、p7zipをダウンロードできます。

p7zipは、独立した開発者が作成したUnix / Linux用の7-Zipのコマンドラインバージョンです。

Linuxバイナリとして、Sourceforgeのソースコード形式配布されます。

ソースコードをダウンロードしmake、アーカイブを展開するフォルダーで実行します。7zaOSに合わせて自動的にビルドされます。これを機能させるには、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

1
「make」の前に、コマンド「cp makefile.macosx_64bits makefile.machine」を発行する必要がありました
chrisinmtown

15

アーカイブのみを抽出する必要がある場合は、unar(Unarchiverのコマンドラインバージョン)も7zipをサポートします。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.