mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
31 lines
718 B
Plaintext
31 lines
718 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# rpmspec
|
|
|
|
> Query a RPM spec file.
|
|
> More information: <https://manned.org/rpmspec>.
|
|
|
|
- List binary packages which would be generated from a RPM spec file:
|
|
|
|
`rpmspec --query {{path/to/rpm.spec}}`
|
|
|
|
- List all options for `--queryformat`:
|
|
|
|
`rpmspec --querytags`
|
|
|
|
- Get summary information for single binary packages generated from a RPM spec file:
|
|
|
|
`rpmspec --query --queryformat "{{%{name}: %{summary}
|
|
}}" {{path/to/rpm.spec}}`
|
|
|
|
- Get the source package which would be generated from a RPM spec file:
|
|
|
|
`rpmspec --query --srpm {{path/to/rpm.spec}}`
|
|
|
|
- Parse a RPM spec file to `stdout`:
|
|
|
|
`rpmspec --parse {{path/to/rpm.spec}}`
|