-
Notifications
You must be signed in to change notification settings - Fork 1
/
zip.txt
2027 lines (1579 loc) · 95 KB
/
zip.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ZIP(1L) ZIP(1L)
NAME
zip - package and compress (archive) files
SYNOPSIS
zip [-aABcdDeEfFghjklLmoqrRSTuvVwXyz!@$] [--longoption ...] [-b path]
[-n suffixes] [-t date] [-tt date] [zipfile [file ...]] [-xi list]
zipcloak (see separate man page)
zipnote (see separate man page)
zipsplit (see separate man page)
Note: Command line processing in zip has been changed to support long
options and handle all options and arguments more consistently. Some
old command lines that depend on command line inconsistencies may no
longer work.
DESCRIPTION
zip is a compression and file packaging utility for Unix, VMS, MSDOS,
OS/2, Windows 9x/NT/XP, Minix, Atari, Macintosh, Amiga, and Acorn RISC
OS. It is analogous to a combination of the Unix commands tar(1) and
compress(1) and is compatible with PKZIP (Phil Katz's ZIP for MSDOS
systems).
A companion program (unzip(1L)) unpacks zip archives. The zip and
unzip(1L) programs can work with archives produced by PKZIP (supporting
most PKZIP features up to PKZIP version 4.6), and PKZIP and PKUNZIP can
work with archives produced by zip (with some exceptions, notably
streamed archives, but recent changes in the zip file standard may
facilitate better compatibility). zip version 3.0 is compatible with
PKZIP 2.04 and also supports the Zip64 extensions of PKZIP 4.5 which
allow archives as well as files to exceed the previous 2 GB limit (4 GB
in some cases). zip also now supports bzip2 compression if the bzip2
library is included when zip is compiled. Note that PKUNZIP 1.10 can-
not extract files produced by PKZIP 2.04 or zip 3.0. You must use PKUN-
ZIP 2.04g or unzip 5.0p1 (or later versions) to extract them.
See the EXAMPLES section at the bottom of this page for examples of
some typical uses of zip.
Large Archives and Zip64. zip automatically uses the Zip64 extensions
when files larger than 4 GB are added to an archive, an archive con-
taining Zip64 entries is updated (if the resulting archive still needs
Zip64), the size of the archive will exceed 4 GB, or when the number of
entries in the archive will exceed about 64K. Zip64 is also used for
archives streamed from standard input as the size of such archives are
not known in advance, but the option -fz- can be used to force zip to
create PKZIP 2 compatible archives (as long as Zip64 extensions are not
needed). You must use a PKZIP 4.5 compatible unzip, such as unzip 6.0
or later, to extract files using the Zip64 extensions.
In addition, streamed archives, entries encrypted with standard encryp-
tion, or split archives created with the pause option may not be com-
patible with PKZIP as data descriptors are used and PKZIP at the time
of this writing does not support data descriptors (but recent changes
in the PKWare published zip standard now include some support for the
data descriptor format zip uses).
Mac OS X. Though previous Mac versions had their own zip port, zip
supports Mac OS X as part of the Unix port and most Unix features
apply. References to "MacOS" below generally refer to MacOS versions
older than OS X. Support for some Mac OS features in the Unix Mac OS X
port, such as resource forks, is expected in the next zip release.
For a brief help on zip and unzip, run each without specifying any
parameters on the command line.
USE
The program is useful for packaging a set of files for distribution;
for archiving files; and for saving disk space by temporarily compress-
ing unused files or directories.
The zip program puts one or more compressed files into a single zip
archive, along with information about the files (name, path, date, time
of last modification, protection, and check information to verify file
integrity). An entire directory structure can be packed into a zip
archive with a single command. Compression ratios of 2:1 to 3:1 are
common for text files. zip has one compression method (deflation) and
can also store files without compression. (If bzip2 support is added,
zip can also compress using bzip2 compression, but such entries require
a reasonably modern unzip to decompress. When bzip2 compression is
selected, it replaces deflation as the default method.) zip automati-
cally chooses the better of the two (deflation or store or, if bzip2 is
selected, bzip2 or store) for each file to be compressed.
Command format. The basic command format is
zip options archive inpath inpath ...
where archive is a new or existing zip archive and inpath is a direc-
tory or file path optionally including wildcards. When given the name
of an existing zip archive, zip will replace identically named entries
in the zip archive (matching the relative names as stored in the
archive) or add entries for new names. For example, if foo.zip exists
and contains foo/file1 and foo/file2, and the directory foo contains
the files foo/file1 and foo/file3, then:
zip -r foo.zip foo
or more concisely
zip -r foo foo
will replace foo/file1 in foo.zip and add foo/file3 to foo.zip. After
this, foo.zip contains foo/file1, foo/file2, and foo/file3, with
foo/file2 unchanged from before.
So if before the zip command is executed foo.zip has:
foo/file1 foo/file2
and directory foo has:
file1 file3
then foo.zip will have:
foo/file1 foo/file2 foo/file3
where foo/file1 is replaced and foo/file3 is new.
-@ file lists. If a file list is specified as -@ [Not on MacOS], zip
takes the list of input files from standard input instead of from the
command line. For example,
zip -@ foo
will store the files listed one per line on stdin in foo.zip.
Under Unix, this option can be used to powerful effect in conjunction
with the find (1) command. For example, to archive all the C source
files in the current directory and its subdirectories:
find . -name "*.[ch]" -print | zip source -@
(note that the pattern must be quoted to keep the shell from expanding
it).
Streaming input and output. zip will also accept a single dash ("-")
as the zip file name, in which case it will write the zip file to stan-
dard output, allowing the output to be piped to another program. For
example:
zip -r - . | dd of=/dev/nrst0 obs=16k
would write the zip output directly to a tape with the specified block
size for the purpose of backing up the current directory.
zip also accepts a single dash ("-") as the name of a file to be com-
pressed, in which case it will read the file from standard input,
allowing zip to take input from another program. For example:
tar cf - . | zip backup -
would compress the output of the tar command for the purpose of backing
up the current directory. This generally produces better compression
than the previous example using the -r option because zip can take
advantage of redundancy between files. The backup can be restored using
the command
unzip -p backup | tar xf -
When no zip file name is given and stdout is not a terminal, zip acts
as a filter, compressing standard input to standard output. For exam-
ple,
tar cf - . | zip | dd of=/dev/nrst0 obs=16k
is equivalent to
tar cf - . | zip - - | dd of=/dev/nrst0 obs=16k
zip archives created in this manner can be extracted with the program
funzip which is provided in the unzip package, or by gunzip which is
provided in the gzip package (but some gunzip may not support this if
zip used the Zip64 extensions). For example:
dd if=/dev/nrst0 ibs=16k | funzip | tar xvf -
The stream can also be saved to a file and unzip used.
If Zip64 support for large files and archives is enabled and zip is
used as a filter, zip creates a Zip64 archive that requires a PKZIP 4.5
or later compatible unzip to read it. This is to avoid amgibuities in
the zip file structure as defined in the current zip standard (PKWARE
AppNote) where the decision to use Zip64 needs to be made before data
is written for the entry, but for a stream the size of the data is not
known at that point. If the data is known to be smaller than 4 GB, the
option -fz- can be used to prevent use of Zip64, but zip will exit with
an error if Zip64 was in fact needed. zip 3 and unzip 6 and later can
read archives with Zip64 entries. Also, zip removes the Zip64 exten-
sions if not needed when archive entries are copied (see the -U
(--copy) option).
When directing the output to another file, note that all options should
be before the redirection including -x. For example:
zip archive "*.h" "*.c" -x donotinclude.h orthis.h > tofile
Zip files. When changing an existing zip archive, zip will write a
temporary file with the new contents, and only replace the old one when
the process of creating the new version has been completed without
error.
If the name of the zip archive does not contain an extension, the
extension .zip is added. If the name already contains an extension
other than .zip, the existing extension is kept unchanged. However,
split archives (archives split over multiple files) require the .zip
extension on the last split.
Scanning and reading files. When zip starts, it scans for files to
process (if needed). If this scan takes longer than about 5 seconds,
zip will display a "Scanning files" message and start displaying
progress dots every 2 seconds or every so many entries processed,
whichever takes longer. If there is more than 2 seconds between dots
it could indicate that finding each file is taking time and could mean
a slow network connection for example. (Actually the initial file scan
is a two-step process where the directory scan is followed by a sort
and these two steps are separated with a space in the dots. If updat-
ing an existing archive, a space also appears between the existing file
scan and the new file scan.) The scanning files dots are not con-
trolled by the -ds dot size option, but the dots are turned off by the
-q quiet option. The -sf show files option can be used to scan for
files and get the list of files scanned without actually processing
them.
If zip is not able to read a file, it issues a warning but continues.
See the -MM option below for more on how zip handles patterns that are
not matched and files that are not readable. If some files were
skipped, a warning is issued at the end of the zip operation noting how
many files were read and how many skipped.
Command modes. zip now supports two distinct types of command modes,
external and internal. The external modes (add, update, and freshen)
read files from the file system (as well as from an existing archive)
while the internal modes (delete and copy) operate exclusively on
entries in an existing archive.
add
Update existing entries and add new files. If the archive does
not exist create it. This is the default mode.
update (-u)
Update existing entries if newer on the file system and add new
files. If the archive does not exist issue warning then create
a new archive.
freshen (-f)
Update existing entries of an archive if newer on the file sys-
tem. Does not add new files to the archive.
delete (-d)
Select entries in an existing archive and delete them.
copy (-U)
Select entries in an existing archive and copy them to a new
archive. This new mode is similar to update but command line
patterns select entries in the existing archive rather than
files from the file system and it uses the --out option to write
the resulting archive to a new file rather than update the
existing archive, leaving the original archive unchanged.
The new File Sync option (-FS) is also considered a new mode, though it
is similar to update. This mode synchronizes the archive with the
files on the OS, only replacing files in the archive if the file time
or size of the OS file is different, adding new files, and deleting
entries from the archive where there is no matching file. As this mode
can delete entries from the archive, consider making a backup copy of
the archive.
Also see -DF for creating difference archives.
See each option description below for details and the EXAMPLES section
below for examples.
Split archives. zip version 3.0 and later can create split archives.
A split archive is a standard zip archive split over multiple files.
(Note that split archives are not just archives split in to pieces, as
the offsets of entries are now based on the start of each split. Con-
catenating the pieces together will invalidate these offsets, but unzip
can usually deal with it. zip will usually refuse to process such a
spliced archive unless the -FF fix option is used to fix the offsets.)
One use of split archives is storing a large archive on multiple remov-
able media. For a split archive with 20 split files the files are typ-
ically named (replace ARCHIVE with the name of your archive)
ARCHIVE.z01, ARCHIVE.z02, ..., ARCHIVE.z19, ARCHIVE.zip. Note that the
last file is the .zip file. In contrast, spanned archives are the
original multi-disk archive generally requiring floppy disks and using
volume labels to store disk numbers. zip supports split archives but
not spanned archives, though a procedure exists for converting split
archives of the right size to spanned archives. The reverse is also
true, where each file of a spanned archive can be copied in order to
files with the above names to create a split archive.
Use -s to set the split size and create a split archive. The size is
given as a number followed optionally by one of k (kB), m (MB), g (GB),
or t (TB) (the default is m). The -sp option can be used to pause zip
between splits to allow changing removable media, for example, but read
the descriptions and warnings for both -s and -sp below.
Though zip does not update split archives, zip provides the new option
-O (--output-file or --out) to allow split archives to be updated and
saved in a new archive. For example,
zip inarchive.zip foo.c bar.c --out outarchive.zip
reads archive inarchive.zip, even if split, adds the files foo.c and
bar.c, and writes the resulting archive to outarchive.zip. If inar-
chive.zip is split then outarchive.zip defaults to the same split size.
Be aware that if outarchive.zip and any split files that are created
with it already exist, these are always overwritten as needed without
warning. This may be changed in the future.
Unicode. Though the zip standard requires storing paths in an archive
using a specific character set, in practice zips have stored paths in
archives in whatever the local character set is. This creates problems
when an archive is created or updated on a system using one character
set and then extracted on another system using a different character
set. When compiled with Unicode support enabled on platforms that sup-
port wide characters, zip now stores, in addition to the standard local
path for backward compatibility, the UTF-8 translation of the path.
This provides a common universal character set for storing paths that
allows these paths to be fully extracted on other systems that support
Unicode and to match as close as possible on systems that don't.
On Win32 systems where paths are internally stored as Unicode but rep-
resented in the local character set, it's possible that some paths will
be skipped during a local character set directory scan. zip with Uni-
code support now can read and store these paths. Note that Win 9x sys-
tems and FAT file systems don't fully support Unicode.
Be aware that console windows on Win32 and Unix, for example, sometimes
don't accurately show all characters due to how each operating system
switches in character sets for display. However, directory navigation
tools should show the correct paths if the needed fonts are loaded.
Command line format. This version of zip has updated command line pro-
cessing and support for long options.
Short options take the form
-s[-][s[-]...][value][=value][ value]
where s is a one or two character short option. A short option that
takes a value is last in an argument and anything after it is taken as
the value. If the option can be negated and "-" immediately follows
the option, the option is negated. Short options can also be given as
separate arguments
-s[-][value][=value][ value] -s[-][value][=value][ value] ...
Short options in general take values either as part of the same argu-
ment or as the following argument. An optional = is also supported.
So
-ttmmddyyyy
and
-tt=mmddyyyy
and
-tt mmddyyyy
all work. The -x and -i options accept lists of values and use a
slightly different format described below. See the -x and -i options.
Long options take the form
--longoption[-][=value][ value]
where the option starts with --, has a multicharacter name, can include
a trailing dash to negate the option (if the option supports it), and
can have a value (option argument) specified by preceeding it with =
(no spaces). Values can also follow the argument. So
--before-date=mmddyyyy
and
--before-date mmddyyyy
both work.
Long option names can be shortened to the shortest unique abbreviation.
See the option descriptions below for which support long options. To
avoid confusion, avoid abbreviating a negatable option with an embedded
dash ("-") at the dash if you plan to negate it (the parser would con-
sider a trailing dash, such as for the option --some-option using
--some- as the option, as part of the name rather than a negating
dash). This may be changed to force the last dash in --some- to be
negating in the future.
OPTIONS
-a
--ascii
[Systems using EBCDIC] Translate file to ASCII format.
-A
--adjust-sfx
Adjust self-extracting executable archive. A self-extracting
executable archive is created by prepending the SFX stub to an
existing archive. The -A option tells zip to adjust the entry
offsets stored in the archive to take into account this "pream-
ble" data.
Note: self-extracting archives for the Amiga are a special case. At
present, only the Amiga port of zip is capable of adjusting or updating
these without corrupting them. -J can be used to remove the SFX stub if
other updates need to be made.
-AC
--archive-clear
[WIN32] Once archive is created (and tested if -T is used,
which is recommended), clear the archive bits of files pro-
cessed. WARNING: Once the bits are cleared they are cleared.
You may want to use the -sf show files option to store the list
of files processed in case the archive operation must be
repeated. Also consider using the -MM must match option. Be
sure to check out -DF as a possibly better way to do incremental
backups.
-AS
--archive-set
[WIN32] Only include files that have the archive bit set.
Directories are not stored when -AS is used, though by default
the paths of entries, including directories, are stored as usual
and can be used by most unzips to recreate directories.
The archive bit is set by the operating system when a file is
modified and, if used with -AC, -AS can provide an incremental
backup capability. However, other applications can modify the
archive bit and it may not be a reliable indicator of which
files have changed since the last archive operation. Alterna-
tive ways to create incremental backups are using -t to use file
dates, though this won't catch old files copied to directories
being archived, and -DF to create a differential archive.
-B
--binary
[VM/CMS and MVS] force file to be read binary (default is text).
-Bn [TANDEM] set Edit/Enscribe formatting options with n defined as
bit 0: Don't add delimiter (Edit/Enscribe)
bit 1: Use LF rather than CR/LF as delimiter (Edit/Enscribe)
bit 2: Space fill record to maximum record length (Enscribe)
bit 3: Trim trailing space (Enscribe)
bit 8: Force 30K (Expand) large read for unstructured files
-b path
--temp-path path
Use the specified path for the temporary zip archive. For exam-
ple:
zip -b /tmp stuff *
will put the temporary zip archive in the directory /tmp, copy-
ing over stuff.zip to the current directory when done. This
option is useful when updating an existing archive and the file
system containing this old archive does not have enough space to
hold both old and new archives at the same time. It may also be
useful when streaming in some cases to avoid the need for data
descriptors. Note that using this option may require zip take
additional time to copy the archive file when done to the desti-
nation file system.
-c
--entry-comments
Add one-line comments for each file. File operations (adding,
updating) are done first, and the user is then prompted for a
one-line comment for each file. Enter the comment followed by
return, or just return for no comment.
-C
--preserve-case
[VMS] Preserve case all on VMS. Negating this option (-C-)
downcases.
-C2
--preserve-case-2
[VMS] Preserve case ODS2 on VMS. Negating this option (-C2-)
downcases.
-C5
--preserve-case-5
[VMS] Preserve case ODS5 on VMS. Negating this option (-C5-)
downcases.
-d
--delete
Remove (delete) entries from a zip archive. For example:
zip -d foo foo/tom/junk foo/harry/\* \*.o
will remove the entry foo/tom/junk, all of the files that start
with foo/harry/, and all of the files that end with .o (in any
path). Note that shell pathname expansion has been inhibited
with backslashes, so that zip can see the asterisks, enabling
zip to match on the contents of the zip archive instead of the
contents of the current directory. (The backslashes are not
used on MSDOS-based platforms.) Can also use quotes to escape
the asterisks as in
zip -d foo foo/tom/junk "foo/harry/*" "*.o"
Not escaping the asterisks on a system where the shell expands
wildcards could result in the asterisks being converted to a
list of files in the current directory and that list used to
delete entries from the archive.
Under MSDOS, -d is case sensitive when it matches names in the
zip archive. This requires that file names be entered in upper
case if they were zipped by PKZIP on an MSDOS system. (We con-
sidered making this case insensitive on systems where paths were
case insensitive, but it is possible the archive came from a
system where case does matter and the archive could include both
Bar and bar as separate files in the archive.) But see the new
option -ic to ignore case in the archive.
-db
--display-bytes
Display running byte counts showing the bytes zipped and the
bytes to go.
-dc
--display-counts
Display running count of entries zipped and entries to go.
-dd
--display-dots
Display dots while each entry is zipped (except on ports that
have their own progress indicator). See -ds below for setting
dot size. The default is a dot every 10 MB of input file pro-
cessed. The -v option also displays dots (previously at a much
higher rate than this but now -v also defaults to 10 MB) and
this rate is also controlled by -ds.
-df
--datafork
[MacOS] Include only data-fork of files zipped into the archive.
Good for exporting files to foreign operating-systems.
Resource-forks will be ignored at all.
-dg
--display-globaldots
Display progress dots for the archive instead of for each file.
The command
zip -qdgds 10m
will turn off most output except dots every 10 MB.
-ds size
--dot-size size
Set amount of input file processed for each dot displayed. See
-dd to enable displaying dots. Setting this option implies -dd.
Size is in the format nm where n is a number and m is a multi-
plier. Currently m can be k (KB), m (MB), g (GB), or t (TB), so
if n is 100 and m is k, size would be 100k which is 100 KB. The
default is 10 MB.
The -v option also displays dots and now defaults to 10 MB also.
This rate is also controlled by this option. A size of 0 turns
dots off.
This option does not control the dots from the "Scanning files"
message as zip scans for input files. The dot size for that is
fixed at 2 seconds or a fixed number of entries, whichever is
longer.
-du
--display-usize
Display the uncompressed size of each entry.
-dv
--display-volume
Display the volume (disk) number each entry is being read from,
if reading an existing archive, and being written to.
-D
--no-dir-entries
Do not create entries in the zip archive for directories.
Directory entries are created by default so that their
attributes can be saved in the zip archive. The environment
variable ZIPOPT can be used to change the default options. For
example under Unix with sh:
ZIPOPT="-D"; export ZIPOPT
(The variable ZIPOPT can be used for any option, including -i
and -x using a new option format detailed below, and can include
several options.) The option -D is a shorthand for -x "*/" but
the latter previously could not be set as default in the ZIPOPT
environment variable as the contents of ZIPOPT gets inserted
near the beginning of the command line and the file list had to
end at the end of the line.
This version of zip does allow -x and -i options in ZIPOPT if
the form
-x file file ... @
is used, where the @ (an argument that is just @) terminates the
list.
-DF
--difference-archive
Create an archive that contains all new and changed files since
the original archive was created. For this to work, the input
file list and current directory must be the same as during the
original zip operation.
For example, if the existing archive was created using
zip -r foofull .
from the bar directory, then the command
zip -r foofull . -DF --out foonew
also from the bar directory creates the archive foonew with just
the files not in foofull and the files where the size or file
time of the files do not match those in foofull.
Note that the timezone environment variable TZ should be set
according to the local timezone in order for this option to work
correctly. A change in timezone since the original archive was
created could result in no times matching and all files being
included.
A possible approach to backing up a directory might be to create
a normal archive of the contents of the directory as a full
backup, then use this option to create incremental backups.
-e
--encrypt
Encrypt the contents of the zip archive using a password which
is entered on the terminal in response to a prompt (this will
not be echoed; if standard error is not a tty, zip will exit
with an error). The password prompt is repeated to save the
user from typing errors.
-E
--longnames
[OS/2] Use the .LONGNAME Extended Attribute (if found) as file-
name.
-f
--freshen
Replace (freshen) an existing entry in the zip archive only if
it has been modified more recently than the version already in
the zip archive; unlike the update option (-u) this will not add
files that are not already in the zip archive. For example:
zip -f foo
This command should be run from the same directory from which
the original zip command was run, since paths stored in zip
archives are always relative.
Note that the timezone environment variable TZ should be set
according to the local timezone in order for the -f, -u and -o
options to work correctly.
The reasons behind this are somewhat subtle but have to do with
the differences between the Unix-format file times (always in
GMT) and most of the other operating systems (always local time)
and the necessity to compare the two. A typical TZ value is
``MET-1MEST'' (Middle European time with automatic adjustment
for ``summertime'' or Daylight Savings Time).
The format is TTThhDDD, where TTT is the time zone such as MET,
hh is the difference between GMT and local time such as -1
above, and DDD is the time zone when daylight savings time is in
effect. Leave off the DDD if there is no daylight savings time.
For the US Eastern time zone EST5EDT.
-F
--fix
-FF
--fixfix
Fix the zip archive. The -F option can be used if some portions
of the archive are missing, but requires a reasonably intact
central directory. The input archive is scanned as usual, but
zip will ignore some problems. The resulting archive should be
valid, but any inconsistent entries will be left out.
When doubled as in -FF, the archive is scanned from the begin-
ning and zip scans for special signatures to identify the limits
between the archive members. The single -F is more reliable if
the archive is not too much damaged, so try this option first.
If the archive is too damaged or the end has been truncated, you
must use -FF. This is a change from zip 2.32, where the -F
option is able to read a truncated archive. The -F option now
more reliably fixes archives with minor damage and the -FF
option is needed to fix archives where -F might have been suffi-
cient before.
Neither option will recover archives that have been incorrectly
transferred in ascii mode instead of binary. After the repair,
the -t option of unzip may show that some files have a bad CRC.
Such files cannot be recovered; you can remove them from the
archive using the -d option of zip.
Note that -FF may have trouble fixing archives that include an
embedded zip archive that was stored (without compression) in
the archive and, depending on the damage, it may find the
entries in the embedded archive rather than the archive itself.
Try -F first as it does not have this problem.
The format of the fix commands have changed. For example, to
fix the damaged archive foo.zip,
zip -F foo --out foofix
tries to read the entries normally, copying good entries to the
new archive foofix.zip. If this doesn't work, as when the
archive is truncated, or if some entries you know are in the
archive are missed, then try
zip -FF foo --out foofixfix
and compare the resulting archive to the archive created by -F.
The -FF option may create an inconsistent archive. Depending on
what is damaged, you can then use the -F option to fix that
archive.
A split archive with missing split files can be fixed using -F
if you have the last split of the archive (the .zip file). If
this file is missing, you must use -FF to fix the archive, which
will prompt you for the splits you have.
Currently the fix options can't recover entries that have a bad
checksum or are otherwise damaged.
-FI
--fifo [Unix] Normally zip skips reading any FIFOs (named pipes)
encountered, as zip can hang if the FIFO is not being fed. This
option tells zip to read the contents of any FIFO it finds.
-FS
--filesync
Synchronize the contents of an archive with the files on the OS.
Normally when an archive is updated, new files are added and
changed files are updated but files that no longer exist on the
OS are not deleted from the archive. This option enables a new
mode that checks entries in the archive against the file system.
If the file time and file size of the entry matches that of the
OS file, the entry is copied from the old archive instead of
being read from the file system and compressed. If the OS file
has changed, the entry is read and compressed as usual. If the
entry in the archive does not match a file on the OS, the entry
is deleted. Enabling this option should create archives that
are the same as new archives, but since existing entries are
copied instead of compressed, updating an existing archive with
-FS can be much faster than creating a new archive. Also con-
sider using -u for updating an archive.
For this option to work, the archive should be updated from the
same directory it was created in so the relative paths match.
If few files are being copied from the old archive, it may be
faster to create a new archive instead.
Note that the timezone environment variable TZ should be set
according to the local timezone in order for this option to work
correctly. A change in timezone since the original archive was
created could result in no times matching and recompression of
all files.
This option deletes files from the archive. If you need to pre-
serve the original archive, make a copy of the archive first or
use the --out option to output the updated archive to a new
file. Even though it may be slower, creating a new archive with
a new archive name is safer, avoids mismatches between archive
and OS paths, and is preferred.
-g
--grow
Grow (append to) the specified zip archive, instead of creating
a new one. If this operation fails, zip attempts to restore the
archive to its original state. If the restoration fails, the
archive might become corrupted. This option is ignored when
there's no existing archive or when at least one archive member
must be updated or deleted.
-h
-?
--help
Display the zip help information (this also appears if zip is
run with no arguments).
-h2
--more-help
Display extended help including more on command line format,
pattern matching, and more obscure options.
-i files
--include files
Include only the specified files, as in:
zip -r foo . -i \*.c
which will include only the files that end in .c in the current
directory and its subdirectories. (Note for PKZIP users: the
equivalent command is
pkzip -rP foo *.c
PKZIP does not allow recursion in directories other than the
current one.) The backslash avoids the shell filename substitu-
tion, so that the name matching is performed by zip at all
directory levels. [This is for Unix and other systems where \
escapes the next character. For other systems where the shell
does not process * do not use \ and the above is
zip -r foo . -i *.c
Examples are for Unix unless otherwise specified.] So to
include dir, a directory directly under the current directory,
use
zip -r foo . -i dir/\*
or
zip -r foo . -i "dir/*"
to match paths such as dir/a and dir/b/file.c [on ports without
wildcard expansion in the shell such as MSDOS and Windows
zip -r foo . -i dir/*
is used.] Note that currently the trailing / is needed for
directories (as in
zip -r foo . -i dir/
to include directory dir).
The long option form of the first example is
zip -r foo . --include \*.c
and does the same thing as the short option form.
Though the command syntax used to require -i at the end of the
command line, this version actually allows -i (or --include)
anywhere. The list of files terminates at the next argument
starting with -, the end of the command line, or the list termi-
nator @ (an argument that is just @). So the above can be given
as
zip -i \*.c @ -r foo .
for example. There must be a space between the option and the
first file of a list. For just one file you can use the single
value form
zip -i\*.c -r foo .
(no space between option and value) or
zip --include=\*.c -r foo .
as additional examples. The single value forms are not recom-
mended because they can be confusing and, in particular, the
-ifile format can cause problems if the first letter of file
combines with i to form a two-letter option starting with i.
Use -sc to see how your command line will be parsed.
Also possible:
zip -r foo . [email protected]
which will only include the files in the current directory and
its subdirectories that match the patterns in the file
include.lst.
Files to -i and -x are patterns matching internal archive paths.
See -R for more on patterns.
-I
--no-image
[Acorn RISC OS] Don't scan through Image files. When used, zip
will not consider Image files (eg. DOS partitions or Spark
archives when SparkFS is loaded) as directories but will store
them as single files.
For example, if you have SparkFS loaded, zipping a Spark archive
will result in a zipfile containing a directory (and its con-
tent) while using the 'I' option will result in a zipfile con-
taining a Spark archive. Obviously this second case will also be
obtained (without the 'I' option) if SparkFS isn't loaded.
-ic
--ignore-case
[VMS, WIN32] Ignore case when matching archive entries. This
option is only available on systems where the case of files is
ignored. On systems with case-insensitive file systems, case is
normally ignored when matching files on the file system but is
not ignored for -f (freshen), -d (delete), -U (copy), and simi-
lar modes when matching against archive entries (currently -f
ignores case on VMS) because archive entries can be from systems
where case does matter and names that are the same except for
case can exist in an archive. The -ic option makes all matching
case insensitive. This can result in multiple archive entries
matching a command line pattern.
-j
--junk-paths
Store just the name of a saved file (junk the path), and do not
store directory names. By default, zip will store the full path
(relative to the current directory).
-jj
--absolute-path
[MacOS] record Fullpath (+ Volname). The complete path including
volume will be stored. By default the relative path will be
stored.
-J
--junk-sfx
Strip any prepended data (e.g. a SFX stub) from the archive.
-k
--DOS-names
Attempt to convert the names and paths to conform to MSDOS,
store only the MSDOS attribute (just the user write attribute
from Unix), and mark the entry as made under MSDOS (even though
it was not); for compatibility with PKUNZIP under MSDOS which
cannot handle certain names such as those with two dots.
-l
--to-crlf
Translate the Unix end-of-line character LF into the MSDOS con-
vention CR LF. This option should not be used on binary files.
This option can be used on Unix if the zip file is intended for
PKUNZIP under MSDOS. If the input files already contain CR LF,
this option adds an extra CR. This is to ensure that unzip -a on
Unix will get back an exact copy of the original file, to undo
the effect of zip -l. See -ll for how binary files are handled.
-la
--log-append
Append to existing logfile. Default is to overwrite.
-lf logfilepath
--logfile-path logfilepath
Open a logfile at the given path. By default any existing file
at that location is overwritten, but the -la option will result
in an existing file being opened and the new log information
appended to any existing information. Only warnings and errors
are written to the log unless the -li option is also given, then
all information messages are also written to the log.
-li
--log-info
Include information messages, such as file names being zipped,
in the log. The default is to only include the command line,
any warnings and errors, and the final status.
-ll
--from-crlf
Translate the MSDOS end-of-line CR LF into Unix LF. This option
should not be used on binary files. This option can be used on
MSDOS if the zip file is intended for unzip under Unix. If the
file is converted and the file is later determined to be binary
a warning is issued and the file is probably corrupted. In this
release if -ll detects binary in the first buffer read from a
file, zip now issues a warning and skips line end conversion on
the file. This check seems to catch all binary files tested,
but the original check remains and if a converted file is later
determined to be binary that warning is still issued. A new
algorithm is now being used for binary detection that should
allow line end conversion of text files in UTF-8 and similar
encodings.
-L
--license
Display the zip license.
-m
--move
Move the specified files into the zip archive; actually, this
deletes the target directories/files after making the specified
zip archive. If a directory becomes empty after removal of the
files, the directory is also removed. No deletions are done
until zip has created the archive without error. This is useful
for conserving disk space, but is potentially dangerous so it is
recommended to use it in combination with -T to test the archive
before removing all input files.
-MM
--must-match