annotate src/zlib-1.2.8/contrib/minizip/miniunzip.1 @ 83:ae30d91d2ffe

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