Added dpkg-query to linux

waldyrious/alt-syntax
Ruben Vereecken 2016-01-06 13:38:13 +01:00
parent d4994d04c6
commit 459ae43490
1 changed files with 19 additions and 0 deletions

19
pages/linux/dpkg-query.md Normal file
View File

@ -0,0 +1,19 @@
# dpkg-query
> A tool that shows information about installed packages.
- 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}}`