Last active
June 11, 2017 08:52
-
-
Save 0xBADC0FFEE/8e384b04ba2d6508dc8471d8f89c32ff to your computer and use it in GitHub Desktop.
Homebrew list all packages with dependencies http://zanshin.net/2014/02/03/how-to-list-brew-dependencies/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew list | while read cask; do echo -n $fg[blue] $cask $fg[white]; brew deps $cask | awk '{printf(" %s ", $0)}'; echo ""; done |
Author
0xBADC0FFEE
commented
Jun 11, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment