mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-13 20:48:16 +00:00
Update cheatsheets
This commit is contained in:
30
linux/rpmspec
Normal file
30
linux/rpmspec
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
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}}`
|
||||
Reference in New Issue
Block a user