Is there a way to obtain a list (possibly with descriptions) of all the casks installable with Homebrew Cask?
相关问题
- Xcode debugger displays incorrect values for varia
- Is there a way to report errors in Apple documenta
- Advice for supporting both Mac and Windows Desktop
- Avoid cmake to add the flags -search_paths_first a
- installing packages for python 3
相关文章
- 现在使用swift开发ios应用好还是swift?
- Visual Studio Code, MAC OS X, OmniSharp server is
- xcode 4 garbage collection removed?
- IntelliJ IDEA can't open projects or add SDK o
- Automator: How do I use the Choose from List actio
- ImportError: No module named twisted.persisted.sty
- How can I vertically align my status bar item text
- git command-line on Mac OS error “dyld: Symbol not
There's a new GUI that enables quick browsing on all the Homebrew packages.
You might want to try out Cakebrew
Also worth noting the analytics data of the top downloads of all cask packages in the past 365 days: https://formulae.brew.sh/analytics/
The installable list is 7000+ casks. You, of course, can grep the result.., but more practical is to list some subset of the installable casks using
search
command:It will print you 2 groups. The first group will be installable ==> Formulae, if any. The second group will be ==> Casks
For example, if you are looking for Beaver DB browser, you can type either:
or:
the
✔
mark indicates installed casks.Slight modification to the answer above:
Brew search now has a --desc flag.
This lists all of them with the description:
List using a browser
*
as search string and all the casks will be displayedList using the command line
The new way to list all installable cask packages is:
brew search --casks
The man page for brew has the following information: