1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 08:22:09 +02:00
tldr/pages/linux/dpkg-query.md

20 lines
427 B
Markdown

# dpkg-query
> A tool that shows information about installed packages.
> More information: <https://manpages.debian.org/latest/dpkg/dpkg-query.1.html>.
- List all installed packages:
`dpkg-query -l`
- List installed packages matching a pattern:
`dpkg-query -l '{{pattern}}'`
- List all files installed by a package:
`dpkg-query -L {{package_name}}`
- Show information about a package:
`dpkg-query -s {{package_name}}`