git subrepo pull (merge) --force deps/libchdr
[pcsx_rearmed.git] / deps / libchdr / deps / zlib-1.3.1 / contrib / minizip / miniunzip.1
CommitLineData
9e052883 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
16miniunzip - uncompress and examine ZIP archives
17.SH SYNOPSIS
18.B miniunzip
19.RI [ -exvlo ]
20zipfile [ files_to_extract ] [-d tempdir]
21.SH DESCRIPTION
22.B minizip
23is a simple tool which allows the extraction of compressed file
24archives in the ZIP format used by the MS-DOS utility PKZIP. It was
25written as a demonstration of the
26.IR zlib (3)
27library and therefore lack many of the features of the
28.IR unzip (1)
29program.
30.SH OPTIONS
31A number of options are supported. With the exception of
32.BI \-d\ tempdir
33these must be supplied before any
34other arguments and are:
35.TP
36.BI \-l\ ,\ \-\-v
37List the files in the archive without extracting them.
38.TP
39.B \-o
40Overwrite files without prompting for confirmation.
41.TP
42.B \-x
43Extract files (default).
44.PP
45The
46.I zipfile
47argument is the name of the archive to process. The next argument can be used
48to specify a single file to extract from the archive.
49
50Lastly, the following option can be specified at the end of the command-line:
51.TP
52.BI \-d\ tempdir
53Extract the archive in the directory
54.I tempdir
55rather than the current directory.
56.SH SEE ALSO
57.BR minizip (1),
58.BR zlib (3),
59.BR unzip (1).
60.SH AUTHOR
61This program was written by Gilles Vollant. This manual page was
62written by Mark Brown <broonie@sirena.org.uk>. The -d tempdir option
63was added by Dirk Eddelbuettel <edd@debian.org>.