baxx
baxx

Reputation: 4755

Mac OS - `brew list` so that casks are exlcuded

I can list casks using brew list --cask, but I'm not sure how to output a list of installed packages which are not casks.

Eg, if i have done:

brew install pyenv
brew install --cask iterm2

I would like to have some brew list --not-cask such that pyenv was output

Upvotes: 1

Views: 1032

Answers (1)

G. Bai
G. Bai

Reputation: 513

Use this command to list formula only:

$ brew list --formula

See more options with this command:

$ brew list --help

Upvotes: 2

Related Questions