mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
659 B
Plaintext
30 lines
659 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# dpigs
|
|
|
|
> Show which installed packages occupy the most space on `apt` based systems.
|
|
> More information: <https://manned.org/dpigs>.
|
|
|
|
- Display the `n` largest packages on the system:
|
|
|
|
`dpigs {{[-n|--lines]}} {{n}}`
|
|
|
|
- Use the specified file instead of the default dpkg status file:
|
|
|
|
`dpigs {{[-s|--status]}} {{path/to/file}}`
|
|
|
|
- Display the largest source packages of binary packages installed on the system:
|
|
|
|
`dpigs {{[-S|--source]}}`
|
|
|
|
- Display package sizes in human-readable format:
|
|
|
|
`dpigs {{[-H|--human-readable]}}`
|
|
|
|
- Display help:
|
|
|
|
`dpigs {{[-h|--help]}}`
|