最近我安装了Brew。如何检索要安装的可用brew包列表?
答案 0 :(得分:355)
brew help
将显示可用的命令列表。
brew list
将显示已安装软件包的列表。您还可以附加公式,例如brew list postgres
将告诉您postgres安装的文件(如果确实安装了它)。
brew search <search term>
将列出您可以安装的可能包。 brew search post
将返回多个可安装的软件包,这些软件包名称中包含帖子。
brew info <package name>
将显示有关相关软件包的一些基本信息。
您还可以搜索http://searchbrew.com或https://brewformulas.org(两个网站基本上都做同样的事情)
答案 1 :(得分:18)
从手册页:
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
就足够了。
答案 2 :(得分:1)