mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 22:42:41 +00:00
30 lines
618 B
Plaintext
30 lines
618 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 --lines={{N}}`
|
|
|
|
- Use the specified file instead of the default dpkg [s]tatus file:
|
|
|
|
`dpigs --status={{path/to/file}}`
|
|
|
|
- Display the largest [S]ource packages of binary packages installed on the system:
|
|
|
|
`dpigs --source`
|
|
|
|
- Display package sizes in [H]uman-readable format:
|
|
|
|
`dpigs --human-readable`
|
|
|
|
- Display help:
|
|
|
|
`dpigs --help`
|