바이너리 파일만 검색된다는 것을 알고 있으므로 파일 이름 cnf를 검색하고 싶습니다. 예를 들어 "usr/include"가 포함된 모든 패키지를 검색하고 싶습니다.
데비안에서
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.