mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 06:05:59 +02:00
dpkg-deb: add page (#4671)
This commit is contained in:
parent
bed0832734
commit
b22e30026a
1 changed files with 24 additions and 0 deletions
24
pages/linux/dpkg-deb.md
Normal file
24
pages/linux/dpkg-deb.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# dpkg-deb
|
||||||
|
|
||||||
|
> Pack, unpack and provide information about Debian archives.
|
||||||
|
> More information: <https://manpages.debian.org/buster/dpkg/dpkg-deb.1.en.html>.
|
||||||
|
|
||||||
|
- Display information about a package:
|
||||||
|
|
||||||
|
`dpkg-deb --info {{path/to/file.deb}}`
|
||||||
|
|
||||||
|
- Display the package's name and version on one line:
|
||||||
|
|
||||||
|
`dpkg-deb --show {{path/to/file.deb}}`
|
||||||
|
|
||||||
|
- List the package's contents:
|
||||||
|
|
||||||
|
`dpkg-deb --contents {{path/to/file.deb}}`
|
||||||
|
|
||||||
|
- Extract package's contents into a directory:
|
||||||
|
|
||||||
|
`dpkg-deb --extract {{path/to/file.deb}} {{path/to/directory}}`
|
||||||
|
|
||||||
|
- Create a package from a specified directory:
|
||||||
|
|
||||||
|
`dpkg-deb --build {{path/to/directory}}`
|
Loading…
Add table
Reference in a new issue