我想搜索文件名 cnf 因为我知道只搜索二进制文件。例如,我想搜索所有包含“usr/include”的包
在 Debian 上
apt-file search usr/include
在 Fedora/Rocky 上
dnf provides /usr/include
在 Opensuse 上?
答案1
您可以使用:
zypper search --provides /usr/include
#or
zypper search --provides --match-exact /usr/include
从zypper search --help
:
--提供
搜索提供搜索字符串的包。
另外,从同一输出中,您可以看到可以赋予 的几个选项zypper search
,例如:
--match-substrings Search for a match to partial words (default).
--match-words Search for a match to whole words only.
-x, --match-exact Searches for an exact match of the search strings.