diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-01-06 22:52:25 -0500 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2020-01-26 09:01:26 +0200 |
commit | 9ce9cd2588bfb31592531b92fd757400d475b47d (patch) | |
tree | 05ca2d2fbc7051fdd77e7b0d088fd8a0d73df537 /doc | |
parent | 665a37de50584a510d7d71653c66847685fa2fb3 (diff) | |
download | apk-tools-9ce9cd2588bfb31592531b92fd757400d475b47d.tar.gz apk-tools-9ce9cd2588bfb31592531b92fd757400d475b47d.tar.bz2 apk-tools-9ce9cd2588bfb31592531b92fd757400d475b47d.tar.xz apk-tools-9ce9cd2588bfb31592531b92fd757400d475b47d.zip |
add apk-update(8)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 1 | ||||
-rw-r--r-- | doc/apk-update.8.scd | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile index e4307a9..06fe066 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -8,6 +8,7 @@ docs: $(obj)/apk.8 \ $(obj)/apk-add.8 \ $(obj)/apk-del.8 \ $(obj)/apk-fix.8 \ + $(obj)/apk-update.8 \ $(obj)/apk-repositories.5 \ $(obj)/apk-world.5 targets += docs diff --git a/doc/apk-update.8.scd b/doc/apk-update.8.scd new file mode 100644 index 0000000..5fccdc1 --- /dev/null +++ b/doc/apk-update.8.scd @@ -0,0 +1,24 @@ +apk-update(8) + +# NAME + +apk update - update repository indexes + +# SYNOPSIS + +*apk update* + +# DESCRIPTION + +*apk update* fetches the index from all configured package repositories. See +*apk-repositories*(5) for more information on configuring package repositories. + +# OPTIONS + +*apk update* does not support any specific options. See *apk*(8) for global +options. + +# AUTHORS + +Natanael Copa <ncopa@alpinelinux.org>++ +Timo Teräs <_timo.teras@iki.fi_> |