summaryrefslogtreecommitdiff
path: root/doc/apk-info.8.scd
blob: 99744498eeb15fa82c30190ca9ef6cad308bb8ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
apk-info(8)

# NAME

apk info - print detailed information about packages

# SYNOPSIS

*apk info* [<_options_>...] _packages_...

*apk info* -W _file_

# DESCRIPTION

*apk info* prints information known about the listed packages. By default, it
prints the description, webpage, and installed size of the package (equivalent
to *apk info -dws*).

Each field printed is prefaced by the name of the package and its package
version, then the field to be displayed, and a newline. The following lines
display the appropriate information, then an empty line terminates that field.

*apk info -W* _file_ prints the package which owns the specified file.

# OPTIONS

*-a, --all*
	List all information known about the package.

*-d, --description*
	Print the package description.

*-e, --installed*
	Check if the package is installed, printing its name and exiting with
	status code zero if so, or exiting with a nonzero status code otherwise.

*-L, --contents*
	List files included in the package.

*-i, --install-if*
	List the package's install_if rule, if configured (i.e. the conditions
	under which this package will be installed automatically).

*-I, --rinstall-if*
	List other packages whose install_if rules refer to this package.

*-r, --rdepends*
	List reverse dependencies of the package (all other packages which
	depend on the package).

*-R, --depends*
	List the dependencies of the package.

*-s, --size*
	Print the package's installed size.

*-w, --webpage*
	Print the URL for the package's upstream webpage.

*-W, --who-owns*
	Print the package which owns the specified file.

*--license*
	Print the package SPDX license identifier.

*--replaces*
	List the other packages for which this package is marked as a
	replacement.

*--triggers*
	Print active triggers for the package.

# AUTHORS

Natanael Copa <ncopa@alpinelinux.org>++
Timo Teräs <timo.teras@iki.fi>