Reputation: 91
Already read solution in "List of installable Homebrew casks", but using all the available suggestions I still don't get a list of Home-brew installable casks.
Using brew search
, brew search --casks
, brew cask search
or other similar commands I get Error: Invalid usage: This command requires at least 1 text or regex argument.
I know brew cask search
is deprecated, but I still can't find a way to get a list of installable packages in Brew, within the command line
Upvotes: 1
Views: 4742
Reputation: 979
You just need to give it an argument. A blank string will match anything.
$ brew search --casks ""
Upvotes: 0