ฉันจะติดตั้ง 7zip ได้อย่างไรฉันจึงสามารถเรียกใช้งานได้จาก Terminal บน OS X


185

ฉันต้องการเรียกใช้ 7zip จากบรรทัดคำสั่งบน Mac ไม่มีใครมีคำแนะนำเกี่ยวกับวิธีการตั้งค่านี้หรือไม่?

คำตอบ:


327

การติดตั้งp7zipใช้Homebrewแรกอัปเดตสูตรเพื่อให้แน่ใจว่าคุณได้รับล่าสุด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ไม่มีปัญหา
Alan Blount

1
@AlanBlount ขอบคุณสำหรับการเพิ่มคำแนะนำสำหรับ MacPorts
ทรอยฮาร์วีย์

1
@ pal4life ตรวจสอบสิทธิ์ของตัวคุณไดเรกทอรีเซลล่า
ทรอยฮาร์วีย์

1
@MaciekSemik ชื่อไฟล์ตัวอย่าง
Sridhar Katakam

2
ฉันต้องมาที่นี่เพื่อค้นหาว่าคำสั่งไม่ใช่ p7zip มันคือ 7z ...
MikeP

39

ในหน้าดาวน์โหลดของ 7-zipมีหลายตัวเลือกสำหรับ OS X แต่ดูเหมือนว่าพวกเขาจะใช้ GUI หรือไม่สามารถใช้ได้ในขณะนี้


คุณสามารถดาวน์โหลด p7zip ได้

p7zip เป็นรุ่นบรรทัดคำสั่งของ 7-Zip สำหรับ Unix / 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

1
ก่อนหน้า "ทำ" ฉันต้องออกคำสั่ง "cp makefile.macosx_64bits makefile.machine"
chrisinmtown

15

หากคุณต้องการแตกไฟล์เก็บถาวรเท่านั้นunar (เวอร์ชันบรรทัดคำสั่งของ Unarchiver) ก็รองรับ 7zip ด้วย

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.