2012-01-12 62 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就足夠了。

相關問題