diff options
author | Enrico Weigelt, metux IT service <weigelt@metux.de> | 2010-07-06 20:06:08 +0200 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2013-03-24 16:28:41 -0700 |
commit | 318a5e190e836f37ee0904342f3323ea31a0290f (patch) | |
tree | 397fcb2cdbac2444eedf66c814f5dade87ee39b4 | |
parent | e9f0b78443884bfd88ead7235bcf5a6a1adae5cd (diff) | |
download | zlib-318a5e190e836f37ee0904342f3323ea31a0290f.tar.gz zlib-318a5e190e836f37ee0904342f3323ea31a0290f.tar.bz2 zlib-318a5e190e836f37ee0904342f3323ea31a0290f.zip |
Add man pages for minizip and miniunzip.
-rw-r--r-- | contrib/minizip/miniunzip.1 | 63 | ||||
-rw-r--r-- | contrib/minizip/minizip.1 | 46 |
2 files changed, 109 insertions, 0 deletions
diff --git a/contrib/minizip/miniunzip.1 b/contrib/minizip/miniunzip.1 new file mode 100644 index 0000000..111ac69 --- /dev/null +++ b/contrib/minizip/miniunzip.1 | |||
@@ -0,0 +1,63 @@ | |||
1 | .\" Hey, EMACS: -*- nroff -*- | ||
2 | .TH miniunzip 1 "Nov 7, 2001" | ||
3 | .\" Please adjust this date whenever revising the manpage. | ||
4 | .\" | ||
5 | .\" Some roff macros, for reference: | ||
6 | .\" .nh disable hyphenation | ||
7 | .\" .hy enable hyphenation | ||
8 | .\" .ad l left justify | ||
9 | .\" .ad b justify to both left and right margins | ||
10 | .\" .nf disable filling | ||
11 | .\" .fi enable filling | ||
12 | .\" .br insert line break | ||
13 | .\" .sp <n> insert n+1 empty lines | ||
14 | .\" for manpage-specific macros, see man(7) | ||
15 | .SH NAME | ||
16 | miniunzip - uncompress and examine ZIP archives | ||
17 | .SH SYNOPSIS | ||
18 | .B miniunzip | ||
19 | .RI [ -exvlo ] | ||
20 | zipfile [ files_to_extract ] [-d tempdir] | ||
21 | .SH DESCRIPTION | ||
22 | .B minizip | ||
23 | is a simple tool which allows the extraction of compressed file | ||
24 | archives in the ZIP format used by the MS-DOS utility PKZIP. It was | ||
25 | written as a demonstration of the | ||
26 | .IR zlib (3) | ||
27 | library and therefore lack many of the features of the | ||
28 | .IR unzip (1) | ||
29 | program. | ||
30 | .SH OPTIONS | ||
31 | A number of options are supported. With the exception of | ||
32 | .BI \-d\ tempdir | ||
33 | these must be supplied before any | ||
34 | other arguments and are: | ||
35 | .TP | ||
36 | .BI \-l\ ,\ \-\-v | ||
37 | List the files in the archive without extracting them. | ||
38 | .TP | ||
39 | .B \-o | ||
40 | Overwrite files without prompting for confirmation. | ||
41 | .TP | ||
42 | .B \-x | ||
43 | Extract files (default). | ||
44 | .PP | ||
45 | The | ||
46 | .I zipfile | ||
47 | argument is the name of the archive to process. The next argument can be used | ||
48 | to specify a single file to extract from the archive. | ||
49 | |||
50 | Lastly, the following option can be specified at the end of the command-line: | ||
51 | .TP | ||
52 | .BI \-d\ tempdir | ||
53 | Extract the archive in the directory | ||
54 | .I tempdir | ||
55 | rather than the current directory. | ||
56 | .SH SEE ALSO | ||
57 | .BR minizip (1), | ||
58 | .BR zlib (3), | ||
59 | .BR unzip (1). | ||
60 | .SH AUTHOR | ||
61 | This program was written by Gilles Vollant. This manual page was | ||
62 | written by Mark Brown <broonie@sirena.org.uk>. The -d tempdir option | ||
63 | was added by Dirk Eddelbuettel <edd@debian.org>. | ||
diff --git a/contrib/minizip/minizip.1 b/contrib/minizip/minizip.1 new file mode 100644 index 0000000..1154484 --- /dev/null +++ b/contrib/minizip/minizip.1 | |||
@@ -0,0 +1,46 @@ | |||
1 | .\" Hey, EMACS: -*- nroff -*- | ||
2 | .TH minizip 1 "May 2, 2001" | ||
3 | .\" Please adjust this date whenever revising the manpage. | ||
4 | .\" | ||
5 | .\" Some roff macros, for reference: | ||
6 | .\" .nh disable hyphenation | ||
7 | .\" .hy enable hyphenation | ||
8 | .\" .ad l left justify | ||
9 | .\" .ad b justify to both left and right margins | ||
10 | .\" .nf disable filling | ||
11 | .\" .fi enable filling | ||
12 | .\" .br insert line break | ||
13 | .\" .sp <n> insert n+1 empty lines | ||
14 | .\" for manpage-specific macros, see man(7) | ||
15 | .SH NAME | ||
16 | minizip - create ZIP archives | ||
17 | .SH SYNOPSIS | ||
18 | .B minizip | ||
19 | .RI [ -o ] | ||
20 | zipfile [ " files" ... ] | ||
21 | .SH DESCRIPTION | ||
22 | .B minizip | ||
23 | is a simple tool which allows the creation of compressed file archives | ||
24 | in the ZIP format used by the MS-DOS utility PKZIP. It was written as | ||
25 | a demonstration of the | ||
26 | .IR zlib (3) | ||
27 | library and therefore lack many of the features of the | ||
28 | .IR zip (1) | ||
29 | program. | ||
30 | .SH OPTIONS | ||
31 | The first argument supplied is the name of the ZIP archive to create or | ||
32 | .RI -o | ||
33 | in which case it is ignored and the second argument treated as the | ||
34 | name of the ZIP file. If the ZIP file already exists it will be | ||
35 | overwritten. | ||
36 | .PP | ||
37 | Subsequent arguments specify a list of files to place in the ZIP | ||
38 | archive. If none are specified then an empty archive will be created. | ||
39 | .SH SEE ALSO | ||
40 | .BR miniunzip (1), | ||
41 | .BR zlib (3), | ||
42 | .BR zip (1). | ||
43 | .SH AUTHOR | ||
44 | This program was written by Gilles Vollant. This manual page was | ||
45 | written by Mark Brown <broonie@sirena.org.uk>. | ||
46 | |||