OS X의 터미널에서 7zip을 실행할 수 있도록 7zip을 설치하는 방법


185

Mac의 명령 줄에서 7zip을 실행할 수 있기를 원합니다. 누구든지 이것을 설정하는 방법에 대한 지침이 있습니까?

답변:


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
MacPorts에 대한 지침을 추가해 주셔서 감사합니다.
Troy Harvey

1
@ pal4life Cellar 디렉토리 의 권한을 확인하십시오 .
Troy Harvey

1
@MaciekSemik 파일 이름 예.
Sridhar Katakam

2
나는 명령이 p7zip이 아니라 7z라는 것을 알기 위해 여기에 와야했다.
MikeP

39

7-zip다운로드 페이지에는 OS X에 대한 몇 가지 옵션이 있습니다. 불행히도 GUI와 함께 있거나 현재 사용할 수없는 것 같습니다.


p7zip을 다운로드 할 수 있습니다.

p7zip은 독립 개발자가 만든 Unix / Linux 용 7-Zip 명령 줄 버전입니다.

Linux 바이너리로 소스 포지 에 소스 코드 형태로 배포됩니다 .

소스 코드를 다운로드하고 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 (The Unarchiver의 명령 행 버전)도 7zip을 지원합니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.