Reputation: 4755
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
Reputation: 513
Use this command to list formula only:
$ brew list --formula
See more options with this command:
$ brew list --help
Upvotes: 2