blob: b2282e06507dc67f05764a20de0b22802bacb933 (
plain)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
=head1 NAME
expac - package data extraction utility
=head1 SYNOPSIS
Usage: I<expac> [options] E<lt>formatE<gt> targets...
=head1 DESCRIPTION
expac is a data extraction tool for alpm databases. It features printf-like
flexibility and aims to be used as a simple tool for other pacman based
utilities which don't link against the library. It uses pacman.conf as a config
file for locating and loading your local and sync databases.
Targets are provided on the command line, and can be specified by simple name,
or in repo/pkg format if the --sync option is used.
=head1 OPTIONS
=over 4
=item B<-S, --sync>
Search the sync databases for provided targets.
=item B<-Q, --query>
Search the local database for provided targets. This is the default behavior.
=item B<-s, --search>
Search for packages matching the strings specified by targets. This is a
boolean AND query and regex is allowed.
=item B<-d, --delim> <string>
Separate each package with the specified I<string>. The default value is a
newline character.
=item B<-l, --listdelim> <string>
Separate each list item with the specified I<string>. Lists are any interpreted
sequence specified with a capital letter. The default value is two spaces.
=item B<-t, --timefmt> <format>
Output time described by the specified I<format>. This string is passed directly
to strftime(3). The default format is %c.
=item B<-v, --verbose>
Output more. `Package not found' errors will be shown, and empty field values
will display as 'None'.
=item B<-h, --help>
Display the help message and quit.
=back
=head1 FORMATTING
The format argument allows the following interpreted sequences:
%B backup files
%C conflicts with
%D depends on
%E depends on (no version strings)
%F files (only with -Q)
%G groups
%L licenses
%N required by
%O optional deps
%P provides
%R replaces
%S provides (no version strings)
%a architecture
%b build date
%d description
%f filename (only with -S)
%i has install scriptlet
%k download size
%l install date (only with -Q)
%m install size
%n package name
%o (reserved)
%p packager name
%r repo
%s md5sum
%u project URL
%v version
%% literal %
Standard backslash escape sequences are supported. See printf(1).
=head1 AUTHOR
Dave Reisner E<lt>d@falconindy.comE<gt>
|