diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-01-07 20:39:39 -0500 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2020-01-26 09:01:26 +0200 |
commit | cd2bf9ff36a03de09d88a6e11e0be98323d8a1fe (patch) | |
tree | c163ad30c3744e8fe72ae7c15c5eedb3cf76c188 /doc/apk-list.8.scd | |
parent | 82096e9e670755c103b36c7930ce9c5cef22b3fc (diff) | |
download | apk-tools-cd2bf9ff36a03de09d88a6e11e0be98323d8a1fe.tar.gz apk-tools-cd2bf9ff36a03de09d88a6e11e0be98323d8a1fe.tar.bz2 apk-tools-cd2bf9ff36a03de09d88a6e11e0be98323d8a1fe.tar.xz apk-tools-cd2bf9ff36a03de09d88a6e11e0be98323d8a1fe.zip |
add apk-list(8)
Diffstat (limited to 'doc/apk-list.8.scd')
-rw-r--r-- | doc/apk-list.8.scd | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/doc/apk-list.8.scd b/doc/apk-list.8.scd new file mode 100644 index 0000000..06412f4 --- /dev/null +++ b/doc/apk-list.8.scd @@ -0,0 +1,43 @@ +apk-list(8) + +# NAME + +apk list - list packages matching a pattern or other criteria + +# SYNOPSIS + +*apk list* [<_options_>...] _pattern_... + +# DESCRIPTION + +*apk list* searches package indicies for packages matching the given patterns +and prints any matching packages. The patterns are matched with *fnmatch*(3), +which behaves similarly to shell globbing. + +# OPTIONS + +*-I, --installed* + Consider only installed packages. + +*-O, --orphaned* + Consider only orphaned packages. + +*-a, --available* + Consider only available packages. + +*-u, --upgradable* + Consider only upgradable packages. + +*-o, --origin* + List packages by origin. + +*-d, --depends* + List packages by dependency. + +*-P, --depends* + List packages by provider. + +# AUTHORS + +Natanael Copa <ncopa@alpinelinux.org>++ +Timo Teräs <_timo.teras@iki.fi_> |