unzip(1) version 3.0

NAME

	unzip - list/test/extract from a ZIP archive file

SYNOPSIS

	unzip [-tvcam] file[.zip]  [filespec] ...

ARGUMENTS

file[.zip]  Path of the ZIP archive.  The suffix ".zip" is applied if
the entryname portion lacks a suffix.  Note that self-extracting ZIP
files are supported; just specify the ".exe" suffix yourself.

[filespec]  An optional list of archive members to be processed.
Expressions may be used to match multiple menbers.  See DESCRIPTION
(below) for more details.

OPTIONS

	-t	test archive contents for validity
	-v	view (ie, list) archive contents
	-c	extract to stdout
	-a	convert <CR> <LF> at line end to <LF>
	-m	map extracted filenames to lower case

DESCRIPTION

Unzip will list, test, or extract from a ZIP archive, commonly found on
MSDOS systems. Archive member extraction is implied by the absence of
the -v or -t options.  All archive members are processed unless a
filespec is provided to specify a subset of the archive members. The
filespec is similar to an egrep expression, and may contain:

	*	matches a sequence of 0 or more characters
	?	matches exactly 1 character
	\nnn	matches the character having octal code nnn
	[...]	matches any single character found inside the brackets;
		ranges are specified by a beginning character, a
		hyphen, and an ending character.  If a '!' follows the
		left bracket, then the range of characters matched is
		complemented, with respect to the ASCII character set.

AUTHOR
	v1.2	3/15/89	Samuel H. Smith
	v2.x	1989	Many contributors.	
	v3.0	5/1/90	David Kirschbaum consolidator,
			kirsch@arsocomvax.socom.mil

