LinuxCommandLibrary

urpmf

Find files in packages and query information about them in Mageia.

TLDR

Search for packages that contain a file

$ urpmf [filename]
copy


Search for packages that contain both a keyword [a]nd another in their summaries
$ urpmf --summary [keyword1] -a [keyword2]
copy


Search for packages that contain a keyword [o]r another in their descriptions
$ urpmf --description [keyword1] -o [keyword2]
copy


Search for packages that do not contain a keyword in their name ignoring case distinction using "|" as the [F]ield separator (":" by default)
$ urpmf --description ! [keyword] -F'|'
copy

Copied to clipboard