zip multiple folders into a zip file using terminal

50,076

The syntax is the other way around; you give the name of the .zip file to create first in the list. Also, use the -r flag for recursion into directories:

zip -r wordcount.zip META-INF org

This creates a file wordcount.zip (you may be able to omit the .zip in the command as this is automatically added if possible) with all the contents of the two directories META-INF and org

Share:
50,076
Vineet Kaushik
Author by

Vineet Kaushik

Updated on September 18, 2022

Comments

  • Vineet Kaushik
    Vineet Kaushik over 1 year

    I wish to store a few folders in a zip file and then convert that zip file into a jar.

    I have the following folders : META-INF and org.

    I tried the following command:

    zip META-INF/ org/ wordcount.zip
    

    But wordcount.zip was not created.

    • David Foerster
      David Foerster over 7 years
      Have you considered using the jar tool if you aim to create a Java Archive?