aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/unzip
diff options
context:
space:
mode:
authorYoshihiro Takahashi <nyan@FreeBSD.org>2023-01-02 04:17:27 +0000
committerYoshihiro Takahashi <nyan@FreeBSD.org>2023-01-02 04:17:27 +0000
commita1f28ec729f7491da8607e8eeaee1b0f547c60d0 (patch)
tree6ee1b5cf3b2c87891c56f05254b686a6093c4e9b /usr.bin/unzip
parente84e44215fe19dad4d1779d5ee0b2f2d2739f016 (diff)
downloadsrc-a1f28ec729f7491da8607e8eeaee1b0f547c60d0.tar.gz
src-a1f28ec729f7491da8607e8eeaee1b0f547c60d0.zip
unzip: Document optional member list
Submitted by: Pat Maddox (man page) PR: 267426 MFC after: 2 weeks
Diffstat (limited to 'usr.bin/unzip')
-rw-r--r--usr.bin/unzip/unzip.18
-rw-r--r--usr.bin/unzip/unzip.c5
2 files changed, 10 insertions, 3 deletions
diff --git a/usr.bin/unzip/unzip.1 b/usr.bin/unzip/unzip.1
index bb43abf43a85..82e2c3a60ea0 100644
--- a/usr.bin/unzip/unzip.1
+++ b/usr.bin/unzip/unzip.1
@@ -25,7 +25,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd September 25, 2021
+.Dd January 2, 2023
.Dt UNZIP 1
.Os
.Sh NAME
@@ -38,6 +38,7 @@
.Op Fl x Ar pattern
.Op Fl P Ar password
.Ar zipfile
+.Op Ar member ...
.Sh DESCRIPTION
.\" ...
The following options are available:
@@ -120,6 +121,11 @@ mode changes the way in which additional arguments are parsed.
Currently only
.Xr zipinfo 1L
mode 1 is supported, which lists the file names one per line.
+.It Ar [member ...]
+Optional list of members to extract from the zipfile.
+Can include patterns, e.g.
+.Ar 'memberdir/*'
+will extract all files and dirs below memberdir.
.El
.Pp
Note that only one of
diff --git a/usr.bin/unzip/unzip.c b/usr.bin/unzip/unzip.c
index 0b564b0f08ec..78731555eadc 100644
--- a/usr.bin/unzip/unzip.c
+++ b/usr.bin/unzip/unzip.c
@@ -998,8 +998,9 @@ static void
usage(void)
{
- fprintf(stderr, "Usage: unzip [-aCcfjLlnopqtuvyZ1] [-d dir] "
- "[-x pattern] [-P password] zipfile\n");
+ fprintf(stderr,
+"Usage: unzip [-aCcfjLlnopqtuvyZ1] [-d dir] [-x pattern] [-P password] zipfile\n"
+" [member ...]\n");
exit(EXIT_FAILURE);
}