Homebrew: list the packages installed from taps?

前端 未结 2 1928
后悔当初
后悔当初 2020-12-28 17:25

Over time, I\'ve installed a number of packages with Homebrew, mostly from the default repo of formulae (homebrew-core), but some from other locations via brew tap

2条回答
  •  -上瘾入骨i
    2020-12-28 18:13

    I found a couple ways that work.

    brew list --full-name
    

    Slower, but a little more informative:

    brew info $(brew list) | grep '^From:' | sort
    

提交回复
热议问题