Return to Snippet

Revision: 28134
at July 2, 2010 00:46 by beneberle


Initial Code
# to choose individual files to include in the zip
zip filename inputfile1 inputfile2

# To include the contents of a directory or directories in a zip archive, use the  -r  flag:
zip -r filename directory

#or

zip -r filename *

Initial URL


Initial Description
Replace filename with the name you want to give the zip file. The .zip extension is automatically appended to the end of the filename. Replace inputfile1 and inputfile2 with the names of the files you wish to include in the zip archive. You can include any number of files here, or you may use an asterisk (*) to include all files in the current directory.

Initial Title
UNIX: zip file or directory

Initial Tags
unix

Initial Language
Bash