Add possibility to show the description of a formula with brew list
and brew leaves
#5344
Unanswered
nbro
asked this question in
Writing Formulae/Casks
Replies: 1 comment 2 replies
-
Have you tried doing something like brew list | xargs brew desc
brew desc $(brew list)
brew leaves | xargs brew desc
brew desc $(brew leaves) ? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Output of
brew config
Output of
brew doctor
Description of issue
It would be nice to be able to see the description of each formula whenever we do
brew list
, so that we have an idea of what is installed in our system, if we don't know a formula (because maybe it was installed as a dependency of another one or you simply don't know or remember why you installed it). So, basically, what I'm asking is thatbrew list
gets another flag--desc
, which can be used with--versions
or--installed-on-request
(or any other flag) and that would show the description of a formula. I know there'sbrew desc
, but that is not the same thing.See also https://github.com/orgs/Homebrew/discussions/5342
Beta Was this translation helpful? Give feedback.
All reactions