これはAlexx Rocheの優れた答えの拡張です。私はその答えを編集しようとしましたが、拒否されました(ただし、Alexxはそうではありません)
which
システムにインストールされているものを追跡しようとしていました。少し作業をして作成しました/usr/local/bin/apt-whatprovides
#!/bin/sh
#apt-whatprovides ver. 201801010101 Copyright alexx, MIT Licence
#rdfa:deps="[realpath,apt-file,grep,which,sh,echo]"
BINARY="$(realpath $(which $@) 2>/dev/null)"
[ -z "$BINARY" ] && BINARY="$@"
echo Searching for $BINARY
PACKAGE="$(apt-file search $BINARY|grep -E ":.*[^-.a-zA-Z0-9]${BINARY}$")"
echo "${PACKAGE}"
ただし、インストールされているほとんどのTHINGには、次のものを使用できます。
apt-file search $(realpath $(which THING)) | grep 'THING$'
インストールされていないものについては、以下を使用できます。
apt-file search THING | grep '/THING$'
apt-whatprovides
スクリプトがあり、あなたのシステム上に存在しないファイルに対して動作します。たとえば、私のシステムには欠けていましdig
たがping
、これが原因で結果が出ました:
pi@raspberrypi:~ $ apt-whatprovides ping
Searching for /bin/ping
inetutils-ping: /bin/ping
iputils-ping: /bin/ping
pi@raspberrypi:~ $ apt-whatprovides dig
Searching for dig
dnsutils: /usr/bin/dig
epic4: /usr/share/epic4/script/dig
epic4-help: /usr/share/epic4/help/8_Scripts/dig
knot-dnsutils: /usr/bin/dig
これSearching for
はping
(インストール済み)の完全なパスであり、インストールされてdig
いない場合のバイナリ名にすぎないことに注意してください。これにより、https:dnsutils
//packages.ubuntu.com/#search_contentsを検索する必要なくインストールする必要があることがわかりました。