Created
September 10, 2017 22:19
-
-
Save JamesMcMahon/fc67a1467f8588cacc9489e6767a65d9 to your computer and use it in GitHub Desktop.
Lists 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
#!/bin/zsh | |
brew list | while read cask; do echo -n $fg[blue] $cask $fg[white]; brew deps $cask | awk '{printf(" %s ", $0)}'; echo ""; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment