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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
=head1 NAME
apt-file -- APT package searching utility -- command-line interface
=head1 SYNOPSIS
B<apt-file> [I<options>] search I<pattern>
B<apt-file> [I<options>] show I<package>
=head1 DESCRIPTION
B<apt-file> is a command line tool for searching files in packages for
the APT package management system.
Some actions are required to run the search:
=over 4
=item find
Alias for search.
=item list
List the contents of a package. This action is very close to the
B<dpkg -L> command except the package does not need to be installed or
fetched.
By default, the B<list> action interprets its pattern as if
B<--fixed-string> was specified.
=item list-indices
List the known Content indices and their status in a human readable
format. These indices can be searched via the B<-I> option (when
enabled and after fetching the indices). The output is subject to
change without notice and is therefore unsuited for script usage /
automation.
For a machine-readable formats (e.g. automation), please use
B<apt-config dump> (search for options starting with
B<Acquire::IndexTargets>) and B<apt-get indextargets> for checking the
cache (Look for entries with an I<Identifier> field starting with
I<Contents->).
Note that individual sources.list entries can override the global
default. Please consult L<sources.list(5)> for more information on
advanced configuration of the B<sources.list> files.
=item search
Search in which package a file is included. A list of all packages
containing the pattern pattern is returned.
Since Contents files does not contain directories, the pattern must
match (part of a) file name.
By default, the B<search> action interprets its pattern as if
B<--substring-match> was specified.
=item show
Alias for list.
=item update
This action that just calls B<apt update> or B<apt-get update>
(depending on whether a tty is available).
The only advantage using this over a regular B<apt update> or
B<apt-get update> directly is for the case where you have configured
an apt-file specific configuration (via the B<Dir::Etc::apt-file-main>
configuration option). In that case, said configuration will be
included automatically.
=back
=head1 OPTIONS
The following options are available:
=over 4
=item -a, --architecture I<architecture[,...]>
This option is useful if you search a package for a different
architecture from the one installed on your system.
It can be a comma-separated list for searching on multiple
architectures.
=item -c, --config-file I<APT config-file>
Configuration File; Specify a configuration file to use. The program
will read the default configuration file and then this configuration
file. If configuration settings need to be set before the default
configuration files are parsed specify a file with the B<APT_CONFIG>
environment variable. See L<apt.conf(5)> for syntax information.
The configuration file will be read relative to when it appears on the
command line and can overwrite options that appear before it.
Note that the config file will also be passed to all APT tools called
by B<apt-file>.
=item -D, --from-deb
Use contents of the given .deb archives(s) as patterns. Useful for
searching for file conflicts with other packages. Implies -F.
=item -f, --from-file
Read patterns from the given file(s), one per line. Use - as filename
for stdin. If no files are given, then the list will be read from
stdin. This is much faster than invoking apt-file many times.
=item --filter-origins I<origin[,...]>
Only search indices from the listed origins (e.g. "Debian").
This filter matches against the name listed in the I<Origin> field
from the Release file.
If set to '*', this filter will be disabled (mostly useful for
overriding the setting in a configuration file)
Alias of the APT config option: B<apt-file::Search-Filter::Origin>
=item --filter-suites I<suite[,...]>
Only search indices from the listed suites or codenames
(e.g. "unstable").
This filter matches against the name listed in the I<Codename> and
I<Suite> fields from the Release file. This means that either
"unstable" or "sid" will match Debian's unstable suite.
If set to '*', this filter will be disabled (mostly useful for
overriding the setting in a configuration file)
Alias of the APT config option: B<apt-file::Search-Filter::Suite>
=item -F, --fixed-string
Do not expand search pattern with generic characters at pattern's
start and end.
This is default for B<show> and B<list> actions.
=item --index-names I<type[,...]>, -I I<type[,...]>
Only search indexes of the given name(s). If set to the special value
I<ALL> (case-sensitive), then all B<apt-file> indices are searched.
The name(s) must match one or more of the identifiers used in the APT
configuration (minus leading "Contents-"). Example if the
configuration has the following snippets:
Acquire::IndexTargets::deb::Contents-deb { ... };
Acquire::IndexTargets::deb-src::Contents-dsc { ... };
Acquire::IndexTargets::deb::Contents-udeb { ... };
Acquire::IndexTargets::deb::Contents-deb-legacy {
# Explicitly named to "Contents-deb"
Identifier "Contents-deb";
...;
};
Then, apt-file will recognise "deb", "dsc" and "udeb" as index names.
This option defaults to the value of the "apt-file::Index-Names" apt
config option (or "deb" if omitted).
=item -i, --ignore-case
Ignore case when searching for pattern.
=item -l, --package-only
Only display package name; do not display file names.
=item --stream-results
I<This is a special-usage option useful for dealing with searches that
produce a high number of matches (10 000+) or/and automated processing
of results.>
Disable deduplication logic and immediately emit a result when a match
is found.
This can greatly reduce the memory requirements for apt-file when
processing searches with many matches. It will also reduce the time
until the first match is emitted, which can be useful if matches can
be processed as they are discovered and the consumer can handle
duplicated matches.
=item -o, --option APT::Option=Value
Set a Configuration Option; This will set an arbitrary configuration
option. The syntax is B<-o APT::Option=Value>. B<-o> and B<--option>
can be used multiple times to set different options.
This option I<can> be used to overwrite other command line options
(e.g. "-o apt-file::Search-Filter::Origin=Debian" is effectively the
same as "--filter-origins Debian").
Note that the config options passed via this option will also be
passed to all APT tools called by B<apt-file>.
=item --substring-match
Match if the given search I<pattern> is a substring of a path or
package.
This is default for B<search> and B<find> actions.
=item -v, --verbose
Run apt-file in verbose/debug mode.
=item -x, --regexp
Treat pattern as a (perl) regular expression. See perlreref(1) for
details. Without this option, pattern is treated as a literal string
to search for.
Be advised that this option can be rather slow. If performance is an
issue, consider giving apt-file non-regex pattern matching too much
and pipe the output to B<< perl -ne '/<pattern-here>/' >>. This enables
apt-file to use more optimizations and leaves less work to the
"slower" regex.
=item -h, --help
Display a short help screen.
=back
=head1 CONFIGURATION FILES
The apt-file command relies on the APT configuration. Notably, the
default configuration makes B<apt> fetch Contents files by default
during a call to B<apt update>.
For information on how to configure APT to fetch more or fewer
Contents files, please refer to
F</usr/share/doc/apt-file/README.md.gz>.
The following files are notably interesting:
=over 4
=item F</etc/apt/apt-file.conf>
Note this path is actually configurable by changing the value of the
APT configuration called "Dir::Etc::apt-file-main". The listed value
is merely the default value of that option.
If this file is present, B<apt-file> will read this file I<after> all
default APT configuration files. Any config file B<-c> or option
(B<-o>) will be evaluated I<before> this file (and can override
options set in it).
The file will also be passed on to all APT tools called by
B<apt-file>.
=item F</etc/apt/apt.conf.d/50apt-file.conf>
Chooses which Contents files to download. Note that apt-file
recognises only "Acquire" targets that starts with "Contents-".
=back
=head2 Special configurations similar to apt-file 2
Here are some B<apt-file> 2 related work flows and how to (almost)
emulate them with B<apt-file> 3. They are documented as a I<starting
point> for people, who are attached to these.
The emulation may not be perfect for you out of the box. Patches are
welcome to keep the examples updated as long as the examples remain
"trivial".
=over 4
=item *
Only make B<apt-file update> fetch Contents files
If you are accustomed to B<apt update> I<not> fetching Contents files,
then you can run
F</usr/share/doc/apt-file/examples/apt-file-2-update.sh>. This script
will configure B<apt> and B<apt-file> accordingly after best effort.
Please read the resulting F</etc/apt/apt-file.conf>.
=item *
Creating/using "user" caches
Previous versions of B<apt-file> had a "--cache" option, which could
be used to denote a directory to store the Contents files. This can
be emulated by doing:
# Setup
$ mkdir -p ~/.cache/apt-file ~/.config
$ touch ~/.cache/apt-file/dpkg-status
$ sed '/^Dir::State/ d; /^Dir::Cache/ d;' \
/usr/share/doc/apt-file/examples/apt-file.conf \
> ~/.config/apt-file.conf
$ cat <<EOF >> ~/.config/apt-file.conf
Dir::State "$HOME/.cache/apt-file";
Dir::Cache "$HOME/.cache/apt-file";
Dir::State::status "$HOME/.cache/apt-file/dpkg-status";
EOF
# Update the cache
$ apt-file -c ~/.config/apt-file.conf update
# Search using the cache
$ apt-file -c ~/.config/apt-file.conf show apt-file
# Removal of the cache + config
$ rm -fr ~/.cache/apt-file ~/.config/apt-file.conf
(You will probably want to add an alias apt-file in your F<~/.bashrc>)
Please read the resulting F<./apt-file-user-cache.conf>.
=back
=head1 BUGS, QUIRKS
There are some known issues or "quirks" that are good to keep in mind.
=over 4
=item *
The Contents files do B<not> include a leading slash on paths. This
means that F</bin/ls> is listed as I<bin/ls> in the Contents file. If
you are looking for something in a top-level directory, it is often
better to omit the leading slash.
The search algorithm will attempt to work around the leading slash,
but it will not work in all cases. As a workaround, try to pull the
leading slash to the beginning of regular expressions. For example,
use "/(?:usr/bin/vim|sbin/lvm)" instead of "/usr/bin/vim|/sbin/lvm".
=item *
When a new line has been added to the sources.list and apt update
has not been run, apt-file does not print a warning message.
=item *
By default, B<apt-file> assumes that Contents files do I<not> include
a descriptive header (explaining what the file is and how to interpret
it). However, some tools have generated them with such a header
(e.g. for old versions of Contents files for the Debian archive or
Contents files generated by reprepro prior to version 5.2.0).
If you search such files, you will want to set
B<apt-file::Parser::Check-For-Description-Header> to true (e.g. in
F</etc/apt/apt.conf.d/50apt-file.conf>) to have B<apt-file> properly
filter out the headers to avoid false matches.
The reason this is not the default is that it costs a factor 2 in
overhead while most common Contents files no longer have the header.
(see #881405 for more details).
=item *
Not all APT repositories have Contents files. Notably common install
media (CDs etc.) may omit them to conserve space.
The default configuration by B<apt-file> marks Contents files as
optional and will just silently fail to search in Contents files in
such repositories.
=back
=head1 EXIT CODES
B<apt-file> has the following defined exit codes, which can be used
for scripting purposes.
=over
=item B<0>
B<apt-file> returned successfully. If the command was a search, there
was at least one result.
=item B<1>
B<apt-file> completed a search successfully, but it had no results.
=item B<2>
An error occurred (including invalid/conflicting user options).
=item B<3>
B<apt-file> could not complete the command because the cache was
empty. Please ensure there are indices enabled in the APT config and
run B<apt update> to fetch them.
=item B<4>
B<apt-file> could not complete the command because the cache does not
have any files matching the restrictions. Either change the
restrictions (e.g. B<--index-names>) or configure apt to fetch the
relevant files and run B<apt update>.
=item B<255>
There was an internal errors / uncaught exception in B<apt-file>.
Please file a bug against B<apt-file>.
=back
Any other exit code is reserved for future use.
=head1 SEE ALSO
L<apt(1)>, L<apt-cache(8)>, L<apt.conf(5)>
The APT users guide in /usr/share/doc/apt/
The example config in /usr/share/doc/apt-file/examples
The README at F</usr/share/doc/apt-file/README.md.gz>
|