About 28,300,000 results
Open links in new tab
  1. Download a .zip file from the command line - Stack Overflow

    Feb 14, 2014 · Download a .zip file from the command line [closed] Asked 11 years, 9 months ago Modified 2 months ago Viewed 94k times

  2. zip mime types, when to pick which one - Stack Overflow

    Dec 5, 2012 · multipart/x-zip - unlike a “discrete” type, the “multipart” type is one which represents a document that's comprised of multiple component parts, each of which may have its own individual …

  3. Zip / 7zip Compression Differences - Stack Overflow

    Feb 24, 2014 · Why is it more efficient to zip several zip files together, than to zip their unzipped contents together? The only thing I can think of is that during compression, the 7zip format builds a …

  4. How do I make a zip file on linux? - Stack Overflow

    Jun 26, 2014 · 9 I think this is gonna help you zip -r new_zip_file directory_name Where "new_zip_file" is the name of the .zip file you want to create and "directory_name" is the folder you want compress in zip.

  5. What is the zip code for Harare? - Answers

    Oct 17, 2024 · What is the zip code for Zimbabwe? Harare is a city in Zimbabwe. Zip codes are a US postal identifier.

  6. GitHub Actions to create a zip of my repository - Stack Overflow

    Apr 15, 2023 · TLDR: Use git to create the zip archive, Github builds on top of it and has support for that. Therefore get the files you want to archive out of the git repository first (archive or fetch+checkout+zip).

  7. How to create a zip archive of a directory? - Stack Overflow

    Dec 6, 2009 · 69 How can I create a zip archive of a directory structure in Python? In a Python script In Python 2.7+, shutil has a make_archive function.

  8. bash - zip error - Nothing to do - Stack Overflow

    Oct 12, 2016 · To make it clearer than Alex's answer, to create a zip file, zip takes in a minimum of 2 arguments. How do I know, because when you use man zip, you get its man page, part of which is:

  9. zip - Unzipping files in Python - Stack Overflow

    Aug 10, 2010 · I read through the zipfile documentation, but couldn't understand how to unzip a file, only how to zip a file. How do I unzip all the contents of a zip file into the same directory?

  10. 7-Zip command to create and extract a password-protected ZIP file on ...

    On Mac/Linux to zip/unzip password protected zip files, I use: Zip: zip -P password -r encrypted.zip folderIWantToZip Unzip: unzip -P password encrypted.zip What are the equivalent command on …