aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-uninstall.cli
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-11-12 14:21:26 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-11-12 17:02:58 +0300
commit5b2f02086f9295cf16e19cb3b7e5369b313bb422 (patch)
treed53b87ffbb7eadfa258f9d9891363306110d6f98 /bpkg/pkg-uninstall.cli
parente87d381eab6233f9493e7e0e96b3a5a6944cedce (diff)
Add --all-pattern option to pkg-{update,clean,test,install,uninstall} commands
Diffstat (limited to 'bpkg/pkg-uninstall.cli')
-rw-r--r--bpkg/pkg-uninstall.cli26
1 files changed, 18 insertions, 8 deletions
diff --git a/bpkg/pkg-uninstall.cli b/bpkg/pkg-uninstall.cli
index 0e9d758..dead6d0 100644
--- a/bpkg/pkg-uninstall.cli
+++ b/bpkg/pkg-uninstall.cli
@@ -15,18 +15,20 @@ namespace bpkg
"\h|SYNOPSIS|
\c{\b{bpkg pkg-uninstall}|\b{uninstall} [<options>] [<vars>] <pkg>...\n
- \b{bpkg pkg-uninstall}|\b{uninstall} [<options>] [<vars>] \b{--all}|\b{-a}}
+ \b{bpkg pkg-uninstall}|\b{uninstall} [<options>] [<vars>] \b{--all}|\b{-a}\n
+ \b{bpkg pkg-uninstall}|\b{uninstall} [<options>] [<vars>] (\b{--all-pattern} <pattern>)...}
\h|DESCRIPTION|
The \cb{pkg-uninstall} command uninstalls the specified packages (the
- first form) or all held packages (the second form, see
- \l{bpkg-pkg-status(1)}). Additionally, immediate or all dependencies of
- these specified packages can be also uninstalled by specifying the
- \c{\b{--immediate}|\b{-i}} or \c{\b{--recursive}|\b{-r}} options,
- respectively. Underneath, this command doesn't do much more than run
- \cb{b uninstall}. In the first form the specified packages must have been
- previously configured with \l{bpkg-pkg-build(1)} or
+ first form), all the held packages (the second form, see
+ \l{bpkg-pkg-status(1)}), or all the held packages that match any of the
+ specified wildcard patterns (the third form). Additionally, immediate or
+ all dependencies of these specified packages can be also uninstalled by
+ specifying the \c{\b{--immediate}|\b{-i}} or \c{\b{--recursive}|\b{-r}}
+ options, respectively. Underneath, this command doesn't do much more than
+ run \cb{b uninstall}. In the first form the specified packages must have
+ been previously configured with \l{bpkg-pkg-build(1)} or
\l{bpkg-pkg-configure(1)}.
Additional command line variables (<vars>, normally \cb{config.*}) can be
@@ -45,6 +47,14 @@ namespace bpkg
"Uninstall all held packages."
}
+ strings --all-pattern
+ {
+ "<pattern>",
+ "Uninstall held packages that match the specified wildcard pattern.
+ Repeat this option to match multiple patterns. Note that you may need
+ to quote the pattern to prevent expansion by your shell."
+ }
+
bool --immediate|-i
{
"Also uninstall immediate dependencies."