-b
path
Use path
as the location to store the temporary ZIP archive while updating an existing one. When done, copy the temporary archive over the new one. Useful primarily when there is not enough disk space on the filesystem containing the original archive.
-c
Add one-line comments for each file. zip
first performs any file operations and then prompts you for a comment describing each file.
-d
Delete entries from a ZIP archive. Filenames to be deleted must be entered in uppercase if the archive was created by PKZIP on an MS-DOS system.
-D
Don't create entries in the archive for directories. Usually entries are created, so that attributes for directories may be restored upon extraction.
-e
Encrypt the archive. zip
prompts on the terminal for a password and prompts twice, to avoid typing errors. If standard error is not a terminal, zip
exits with an error.
-f
Freshen (replace) an existing entry in the ZIP archive if the file has a more recent modification time than the one in the archive. This doesn't add files that are not already in the archive: use -u
for that. Run this command from the same directory where the ZIP archive was created, since the archive stores relative path names.
-F
, -FF
Fix the ZIP archive. This option should be used with care; make a backup copy of the archive first. The -FF
version does not trust the compressed sizes in the archive, and instead scans it for special "signatures" that identify the boundaries of different archive members. See the manpage for more information.
-g
Grow the archive (append files to it).
-h
Display the zip
help information.
-i
files
Include only the specified files
, typically specified as a quoted shell wildcard-style pattern.
-j
"Junk" the path; i.e., store just the name of the saved file, not any directory names. The default is to store complete paths, although paths are always relative.
-J
Strip any prepended data (e.g., an SFX
stub, for self-extracting executables) from the archive.
-k
Create an archive that (attempts to) conform to the conventions used under MS-DOS. This makes it easier for PKUNZIP to extract the archive.
-l
For text files only, translate the Unix newline into a CR-LF pair. Primarily for archives extracted under MS-DOS.
-ll
For text files only, translate the MS-DOS CR-LF into a Unix newline.
-L
Display the zip
license.
-m
"Move" the files into the ZIP archive. This actually deletes the original files and/or directories after the archive has been created successfully. This is somewhat dangerous; use -T
in conjunction with this option.
-n
suffixlist
Do not compress files with suffixes in suffixlist
. Useful for sound or image files that often have their own, specialized compression method.
-o
Set the modified time of the ZIP archive to be that of the youngest file (most recently modified) in the archive.
-q
Quiet mode. Don't print informational messages and comment prompts. Most useful in shell scripts.
-r
Recursively archive all files and subdirectories of the named files
. The -i
option is also useful in combination with this one.
-t
mmddyy
Ignore files modified prior to the date given by mmddyy
.
-T
Test the new ZIP archive's integrity. If the test fails, an existing ZIP archive is not changed, and with -m
, no files are removed.
-u
Update existing entries in the ZIP archive if the named files
have modification dates that are newer than those in the archive. Similar to -f
, except that this option adds files to the archive if they aren't already there.
-v
As the only argument, print help and version information, a pointer to the home and distribution Internet sites, and information about how zip
was compiled. When used with other options, cause those options to print progress information and provide other diagnostic information.
-x
files
Exclude the specified files
, typically specified as a quoted shell wildcard-style pattern.
-X
Do not save extra file attributes (extended attributes on OS/2, user ID/group ID, and file times on Unix).
-y
Preserve symbolic links in the ZIP archive, instead of archiving the file the link points to.
-z
Prompt for a (possibly multiline) comment describing the entire ZIP archive. End the comment with line containing just a period, or EOF
.
-
n
Specify compression speed: n
is a digit between 0 and 9. 0 indicates no compression, 1 indicates fast but minimal compression, 9 indicates slowest but maximal compression. Default is -6
.
-@
Read standard input for names of files to be archived. Filenames containing spaces must be quoted using single quotes.