%aptent; %aptverbatiment; %aptvendor; ]> &apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 2019-11-26T00:00:00Z apt-patterns 7 APT apt-patterns Syntax and semantics of apt search patterns Description Starting with version 2.0, APT provides support for patterns, which can be used to query the apt cache for packages. Logic patterns These patterns provide the basic means to combine other patterns into more complex expressions, as well as ?true and ?false patterns. ?and(PATTERN, PATTERN, ...) Selects objects where all specified patterns match. ?false Selects nothing. ?not(PATTERN) Selects objects where PATTERN does not match. ?or(PATTERN, PATTERN, ...) Selects objects where at least one of the specified patterns match. ?true Selects all objects. Narrowing patterns ?all-versions(PATTERN) Selects packages where all versions match PATTERN. When matching versions instead, same as PATTERN. ?any-version(PATTERN) Selects any version where the pattern matches on the version. For example, while ?and(?version(1),?version(2)) matches a package which has one version containing 1 and one version containing 2, ?any-version(?and(?version(1),?version(2))) restricts the ?and to act on the same version. ?narrow(PATTERN...) Selects any version matching all PATTERNs, short for?any-version(?and(PATTERN...)). Package patterns These patterns select specific packages. ?architecture(WILDCARD) Selects packages matching the specified architecture, which may contain wildcards using any. ?automatic Selects packages that were installed automatically. ?broken Selects packages that have broken dependencies. ?config-files Selects packages that are not fully installed, but have solely residual configuration files left. ?essential Selects packages that have Essential: yes set in their control file. ?exact-name(NAME) Selects packages with the exact specified name. ?garbage Selects packages that can be removed automatically. ?installed Selects packages that are currently installed. ?name(REGEX) Selects packages where the name matches the given regular expression. ?obsolete Selects packages that no longer exist in repositories. ?upgradable Selects packages that can be upgraded (have a newer candidate). ?virtual Selects all virtual packages; that is packages without a version. These exist when they are referenced somewhere in the archive, for example because something depends on that name. Version patterns These patterns select specific versions of a package. ?archive(REGEX) Selects versions that come from the archive that matches the specified regular expression. Archive, here, means the values after a= in apt-cache policy. ?origin(REGEX) Selects versions that come from the origin that matches the specified regular expression. Origin, here, means the values after o= in apt-cache policy. ?section(REGEX) Selects versions where the section matches the specified regular expression. ?source-package(REGEX) Selects versions where the source package name matches the specified regular expression. ?source-version(REGEX) Selects versions where the source package version matches the specified regular expression. ?version(REGEX) Selects versions where the version string matching the specified regular expression. Examples apt remove ?garbage Remove all packages that are automatically installed and no longer needed - same as apt autoremove apt purge ?config-files Purge all packages that only have configuration files left Migrating from aptitude Patterns in apt are heavily inspired by patterns in aptitude, but with some tweaks: Only long forms — the ones starting with ? — are supported Syntax is uniform: If there is an opening parenthesis after a term, it is always assumed to be the beginning of an argument list. In aptitude, a syntactic form "?foo(bar)" could mean "?and(?foo,bar)" if foo does not take an argument. In APT, this will cause an error. Not all patterns are supported. Some additional patterns are available, for example, for finding gstreamer codecs. Escaping terms with ~ is not supported. A trailing comma is allowed in argument lists ?narrow accepts infinite arguments See Also &apt-get;, &apt; &manbugs; &manauthor;