Motifs de recherche

Searching for strings
Shorthand for search terms
Searches and Versions
Explicit search targets
Search Term Reference

Quand vous recherchez un paquet ou restreignez l'affichage dans aptitude, la chaîne que vous entrez est appelée « motif de recherche ». Bien que l'utilisation première des motifs de recherche soit de chercher le nom exact des paquets, aptitude permet de créer des recherches bien plus élaborées. En plus de l'interface visuelle, des opérations en ligne de commandes peuvent aussi utiliser des motifs de recherche ; consultez Référence de la ligne de commande pour plus de détails.

A search pattern consists of one or more conditions (sometimes known as « terms »); packages match the pattern if they match all of its terms. Terms generally start with a question mark (« ? »), followed by the name of the match term, which describes the search that the term performs: for instance, the term ?name matches package names, while the term ?version matches package versions. Finally, any additional parameters to the search term are placed in parentheses (see the documentation of individual terms for more information on this).

[Note]Note

Text with no leading « ? » can also form a search pattern: aptitude will attempt to match it against package names. However, because « ? » is a regular expression metacharacter, aptitude will not recognize question marks as a terminator for these « bare » strings. For instance, the search pattern « apt?name(python) » will not search for packages whose name contains both « apt » and « python »; instead, it will search for packages whose name matches the regular expression « apt?name(python) ».

[Avertissement]Avertissement

The behavior of aptitude when given a search pattern without a leading « ? » (or « ~ ») is provided as a convenience for interactive use and may change in future releases; scripts that invoke aptitude should explicitly name the search strategy they want to use. That is, scripts should search for « ?name(coq) » or « ~ncoq » rather than « coq »).