annotate src/zlib-1.2.8/contrib/minizip/miniunzip.1 @ 128:5b4145a0d408

Current zlib source
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 18 Oct 2016 14:33:52 +0100
parents
children
rev   line source
cannam@128 1 .\" Hey, EMACS: -*- nroff -*-
cannam@128 2 .TH miniunzip 1 "Nov 7, 2001"
cannam@128 3 .\" Please adjust this date whenever revising the manpage.
cannam@128 4 .\"
cannam@128 5 .\" Some roff macros, for reference:
cannam@128 6 .\" .nh disable hyphenation
cannam@128 7 .\" .hy enable hyphenation
cannam@128 8 .\" .ad l left justify
cannam@128 9 .\" .ad b justify to both left and right margins
cannam@128 10 .\" .nf disable filling
cannam@128 11 .\" .fi enable filling
cannam@128 12 .\" .br insert line break
cannam@128 13 .\" .sp <n> insert n+1 empty lines
cannam@128 14 .\" for manpage-specific macros, see man(7)
cannam@128 15 .SH NAME
cannam@128 16 miniunzip - uncompress and examine ZIP archives
cannam@128 17 .SH SYNOPSIS
cannam@128 18 .B miniunzip
cannam@128 19 .RI [ -exvlo ]
cannam@128 20 zipfile [ files_to_extract ] [-d tempdir]
cannam@128 21 .SH DESCRIPTION
cannam@128 22 .B minizip
cannam@128 23 is a simple tool which allows the extraction of compressed file
cannam@128 24 archives in the ZIP format used by the MS-DOS utility PKZIP. It was
cannam@128 25 written as a demonstration of the
cannam@128 26 .IR zlib (3)
cannam@128 27 library and therefore lack many of the features of the
cannam@128 28 .IR unzip (1)
cannam@128 29 program.
cannam@128 30 .SH OPTIONS
cannam@128 31 A number of options are supported. With the exception of
cannam@128 32 .BI \-d\ tempdir
cannam@128 33 these must be supplied before any
cannam@128 34 other arguments and are:
cannam@128 35 .TP
cannam@128 36 .BI \-l\ ,\ \-\-v
cannam@128 37 List the files in the archive without extracting them.
cannam@128 38 .TP
cannam@128 39 .B \-o
cannam@128 40 Overwrite files without prompting for confirmation.
cannam@128 41 .TP
cannam@128 42 .B \-x
cannam@128 43 Extract files (default).
cannam@128 44 .PP
cannam@128 45 The
cannam@128 46 .I zipfile
cannam@128 47 argument is the name of the archive to process. The next argument can be used
cannam@128 48 to specify a single file to extract from the archive.
cannam@128 49
cannam@128 50 Lastly, the following option can be specified at the end of the command-line:
cannam@128 51 .TP
cannam@128 52 .BI \-d\ tempdir
cannam@128 53 Extract the archive in the directory
cannam@128 54 .I tempdir
cannam@128 55 rather than the current directory.
cannam@128 56 .SH SEE ALSO
cannam@128 57 .BR minizip (1),
cannam@128 58 .BR zlib (3),
cannam@128 59 .BR unzip (1).
cannam@128 60 .SH AUTHOR
cannam@128 61 This program was written by Gilles Vollant. This manual page was
cannam@128 62 written by Mark Brown <broonie@sirena.org.uk>. The -d tempdir option
cannam@128 63 was added by Dirk Eddelbuettel <edd@debian.org>.