मैं 7zip कैसे स्थापित कर सकता हूं, इसलिए मैं इसे ओएस एक्स पर टर्मिनल से चला सकता हूं


185

मैं कमांड लाइन से मैक पर 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
MacAorts के लिए निर्देश जोड़ने के लिए @AlanBlount धन्यवाद।
ट्रॉय हार्वे

1
@ pal4life अपने तहखाने निर्देशिका पर अनुमति की जाँच करें ।
ट्रॉय हार्वे

1
@MaciekSemik उदाहरण फ़ाइल नाम।
श्रीधर कटकम

2
मुझे यह पता लगाने के लिए यहां आना पड़ा कि कमांड p7zip नहीं है, यह 7z है ...
माइक

39

7-ज़िप के डाउनलोड पेज पर , ओएस एक्स के लिए कई विकल्प हैं। दुर्भाग्य से, वे एक जीयूआई के साथ प्रतीत होते हैं, या फिलहाल उपलब्ध नहीं हैं।


हालांकि आप p7zip डाउनलोड कर सकते हैं।

p7zip एक स्वतंत्र डेवलपर द्वारा बनाए गए यूनिक्स / लिनक्स के लिए 7-ज़िप का कमांड लाइन संस्करण है

यह लिनक्स बायनेरिज़ के रूप में और सोर्सफोर्ज पर सोर्स कोड फॉर्म में वितरित किया जाता है ।

स्रोत कोड डाउनलोड करें, और 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

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.