Files
tldr/pages.fr/linux/apt-cache.md

25 lines
564 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# apt-cache
> Outil de recherche de paquets Debian et Ubuntu.
> Plus d'informations : <https://manpages.debian.org/latest/apt/apt-cache.8.html>.
- Recherche un paquet dans vos sources actuelles :
`apt-cache search {{query}}`
- Affiche des informations sur un paquet :
`apt-cache show {{package}}`
- Indique si un paquet est installé et à jour :
`apt-cache policy {{package}}`
- Affiche les dépendances d'un paquet :
`apt-cache depends {{package}}`
- Affiche les paquets qui dépendent d'un paquet particulier :
`apt-cache rdepends {{package}}`