Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@0xBADC0FFEE
Last active June 11, 2017 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0xBADC0FFEE/8e384b04ba2d6508dc8471d8f89c32ff to your computer and use it in GitHub Desktop.
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/
brew list | while read cask; do echo -n $fg[blue] $cask $fg[white]; brew deps $cask | awk '{printf(" %s ", $0)}'; echo ""; done
@0xBADC0FFEE
Copy link
Author

Example preview

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment