特定のDebianパッケージが提供するコマンドを知りたい。
たとえば、というパッケージをインストールしたとしましょうx.deb
。このパッケージには確かに私が使用できるいくつかのコマンドが含まれています。
これらのコマンドをリストする方法。
私はcompgen
bashコマンドを使用して、システムで使用可能なすべてのコマンドのリストを生成できることを知っていますが、必要なのは特定のパッケージだけです。
私は解決策を試しました:
dpkg -L postgresql-9.3 | egrep '(bin|games)/'
/usr/lib/postgresql/9.3/bin/pg_upgrade
/usr/lib/postgresql/9.3/bin/pg_ctl
/usr/lib/postgresql/9.3/bin/pg_resetxlog
/usr/lib/postgresql/9.3/bin/postgres
/usr/lib/postgresql/9.3/bin/pg_xlogdump
/usr/lib/postgresql/9.3/bin/initdb
/usr/lib/postgresql/9.3/bin/pg_controldata
/usr/lib/postgresql/9.3/bin/postmaster
コマンドを試してみました postgres
user@userPc:~$ postgres
No command 'postgres' found, did you mean:
Command 'postgrey' from package 'postgrey' (universe)
postgres: command not found