mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-15 11:55:49 +02:00
rpmspec: add page (#6779)
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com> Co-authored-by: Axel Navarro <navarroaxel@gmail.com> Co-authored-by: pixel <chrissx@chrissx.de> Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
This commit is contained in:
parent
1b9e420e24
commit
371d2c8997
1 changed files with 20 additions and 0 deletions
20
pages/linux/rpmspec.md
Normal file
20
pages/linux/rpmspec.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# 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}}`
|
||||
|
||||
- Get summary information for single binary packages generated from a rpm spec file:
|
||||
|
||||
`rpmspec --query --queryformat "{{%{name}: %{summary}\n}}" {{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}}`
|
Loading…
Add table
Reference in a new issue