Opensuse:aptファイルエミュレーション?

Opensuse:aptファイルエミュレーション?

バイナリファイルだけが検索されることがわかっているので、ファイル名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.

おすすめ記事