diff --git a/pages/linux/rpmspec.md b/pages/linux/rpmspec.md new file mode 100644 index 0000000000..a18e289df1 --- /dev/null +++ b/pages/linux/rpmspec.md @@ -0,0 +1,20 @@ +# rpmspec + +> Query a RPM spec file. +> More information: . + +- 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}}`