सब कुछ वर्तमान निर्देशिका में


84

मैं उबंटू पर एक ही ज़िप फ़ाइल में वर्तमान निर्देशिका में फ़ाइलों और फ़ोल्डरों सहित, सब कुछ संपीड़ित और पैकेज करना चाहता हूं।

इसके लिए सबसे सुविधाजनक कमांड क्या होगा (और यदि आवश्यक हो तो इंस्टॉल किए जाने वाले टूल का नाम)?

संपादित करें: क्या होगा अगर मुझे एक फ़ोल्डर या कई फ़ाइलों को बाहर करने की आवश्यकता है?

जवाबों:


103

स्थापित करें zipऔर उपयोग करें

zip -r foo.zip .

आप संपीड़न को बदलने के लिए झंडे -0(कोई नहीं) का -9(सबसे अच्छा) उपयोग कर सकते हैं

-xझंडे के माध्यम से फ़ाइलों को छोड़कर किया जा सकता है । मैन-पेज से:

-x files
--exclude files
          Explicitly exclude the specified files, as in:

                 zip -r foo foo -x \*.o

          which  will  include the contents of foo in foo.zip while excluding all the files that end in .o.  The backslash avoids the shell filename substitution, so that the name matching
          is performed by zip at all directory levels.

          Also possible:

                 zip -r foo foo -x@exclude.lst

          which will include the contents of foo in foo.zip while excluding all the files that match the patterns in the file exclude.lst.

          The long option forms of the above are

                 zip -r foo foo --exclude \*.o

          and

                 zip -r foo foo --exclude @exclude.lst

          Multiple patterns can be specified, as in:

                 zip -r foo foo -x \*.o \*.c

          If there is no space between -x and the pattern, just one value is assumed (no list):

                 zip -r foo foo -x\*.o

          See -i for more on include and exclude.

+1 क्या होगा अगर मैं कुछ फ़ोल्डर या फ़ाइल को बाहर करना चाहता हूं?
टेरी ली

1
@TerryLiYifeng मैंने उस पर जानकारी के साथ अपना जवाब संपादित किया
SkaveRat

18

मैं ऐसे कई लोगों का अनुमान लगाता हूं जो इस प्रश्न के लिए Google के माध्यम से आते हैं, जब वे "ज़िप" लिखते हैं तो "संग्रह और संक्षिप्त" होता है। ज़िप प्रारूप का एक विकल्प टार है :

tar -czf copy.tar.gz whatever/

जहां संपीड़ित संग्रह फ़ाइल copy.tar.gz होगी और सामग्री जो कुछ भी फ़ोल्डर में होगी।

 -c, --create
       create a new archive
 -z, --gzip, --gunzip --ungzip
 -f, --file ARCHIVE
       use archive file or device ARCHIVE

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