mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
27 lines
706 B
Plaintext
27 lines
706 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pkgctl diff
|
|
|
|
> Compare package files using different modes.
|
|
> See also: `pkgctl`.
|
|
> More information: <https://manned.org/pkgctl-diff>.
|
|
|
|
- Compare package files in tar content list different mode (default):
|
|
|
|
`pkgctl diff {{[-l|--list]}} {{path/to/file|pkgname}}`
|
|
|
|
- Compare package files in diffoscope different mode:
|
|
|
|
`pkgctl diff {{[-d|--diffoscope]}} {{path/to/file|pkgname}}`
|
|
|
|
- Compare package files in `.PKGINFO` different mode:
|
|
|
|
`pkgctl diff {{[-p|--pkginfo]}} {{path/to/file|pkgname}}`
|
|
|
|
- Compare package files in `.BUILDINFO` different mode:
|
|
|
|
`pkgctl diff {{[-b|--buildinfo]}} {{path/to/file|pkgname}}`
|