Macでコマンドラインから7zipを実行できるようにしたい。 どなたか設定方法をご存知の方はいませんか?
208 Paul Sheldrake 2013-02-08
ベストアンサー
p7zip を Homebrew でインストールするには、まず brew
式を更新して、最新の p7zip
を取得していることを確認してください
$ brew update
Homebrewを使ってp7zip
をインストールします
$ brew install p7zip
sputnik
ディレクトリ内のすべてのファイルを圧縮ファイルheed.7z
に追加します
$ 7z a heed.7z sputnik
Unzip heed.7z
:
$ 7z x heed.7z
360 Troy Harvey 2013-10-29
7-zipのダウンロードページには、OS X用のオプションがいくつかあります。残念ながら、それらはGUI付きだったり、今のところ利用できなかったりするようです
p7zipはダウンロードできますが
p7zip は独立した開発者によって作られた Unix/Linux 用 7-Zip のコマンドライン版です
Linux バイナリとして配布されており、ソースコード形式で on Sourceforge で配布されています
ソースコードをダウンロードして、アーカイブを展開したフォルダでmake
を実行してください。自動的に 7za
があなたの OS 用にビルドされます。この作業を行うには、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
43 Daniel Beck 2013-02-08
アーカイブを展開するだけなら、unar (The Unarchiver のコマンドライン版) も 7zip をサポートしています
16 Lri 2013-02-08