Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of installable Homebrew casks

Is there a way to obtain a list (possibly with descriptions) of all the casks installable with Homebrew Cask?

like image 607
enrico.bacis Avatar asked Aug 13 '16 07:08

enrico.bacis


People also ask

How do I find Homebrew casks?

You can use the --casks flag in brew search to "display all locally available casks". $ brew search -h Usage: brew search [options] [text|/text/] Perform a substring search of cask tokens and formula names for text. If text is surrounded with slashes, then it is interpreted as a regular expression.

What does brew list do?

brew provides commands for getting common types of information out of the system. brew list shows installed formulae. brew deps foo shows the dependencies that foo needs. Additional commands, including external commands, can of course be written to provide more detailed information.

What does tapping Homebrew cask mean?

brew tap adds more repositories to the list of formulae that brew tracks, updates, and installs from. By default, tap assumes that the repositories come from GitHub, but the command isn't limited to any one location. Follow this answer to receive notifications.


2 Answers

The new way to list all installable cask packages is:

brew search --casks

The man page for brew has the following information:

search --casks

Display all locally available casks (including tapped ones). No online search is performed.

like image 137
user1495606 Avatar answered Sep 20 '22 13:09

user1495606


Brew search now has a --desc flag.

This lists all of them with the description:

brew search --casks --desc '' 
like image 45
Derimagia Avatar answered Sep 19 '22 13:09

Derimagia