diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-01-07 20:47:37 -0500 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2020-01-26 09:01:26 +0200 |
commit | 830d96b3ee792cdaebf4816e5b8d9fe0d9573c10 (patch) | |
tree | 7d8935df9674a20dc5b4d6243b4a3ecb5043d08b /doc/apk-dot.8.scd | |
parent | cd2bf9ff36a03de09d88a6e11e0be98323d8a1fe (diff) | |
download | apk-tools-830d96b3ee792cdaebf4816e5b8d9fe0d9573c10.tar.gz apk-tools-830d96b3ee792cdaebf4816e5b8d9fe0d9573c10.tar.bz2 apk-tools-830d96b3ee792cdaebf4816e5b8d9fe0d9573c10.tar.xz apk-tools-830d96b3ee792cdaebf4816e5b8d9fe0d9573c10.zip |
add apk-dot(8)
Diffstat (limited to 'doc/apk-dot.8.scd')
-rw-r--r-- | doc/apk-dot.8.scd | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/apk-dot.8.scd b/doc/apk-dot.8.scd new file mode 100644 index 0000000..1addfc2 --- /dev/null +++ b/doc/apk-dot.8.scd @@ -0,0 +1,29 @@ +apk-dot(8) + +# NAME + +apk dot - generate graphviz graphs + +# SYNOPSIS + +*apk dot* [<_options_>...] [_pkgmask_...] + +# DESCRIPTION + +*apk dot* generates graphviz dependency graphs for packages matching the masks +specified, or for every known package if unspecified (this will generate a +large and unwieldy graph). + +# OPTIONS + +*--errors* + Graph only relationships considered erroneous, e.g. cycles and missing + packages. + +*--installed* + Consider only installed packages. + +# AUTHORS + +Natanael Copa <ncopa@alpinelinux.org>++ +Timo Teräs <_timo.teras@iki.fi_> |