2012-01-12 82 views

回答

328

brew help将显示可用命令列表。

brew list会显示已安装软件包的列表。你也可以附加公式,例如brew list postgres会告诉你由postgres安装的文件(假设它已经安装)。

brew search <search term>将列出您可以安装的可能软件包。 brew search post将返回可用于安装的名称中有帖子的多个包。

brew info <package name>将显示有关该软件包的一些基本信息。

13

从手册页:

search, -S text|/text/ 
Perform a substring search of formula names for text. If text is surrounded with slashes, 
then it is interpreted as a regular expression. If no search term is given, 
all available formula are displayed. 

你的目的,brew search就足够了。

相关问题