Script to show installed brew packages dependencies
Last active
February 1, 2020 19:55
-
-
Save smikheiev/42763f355c1673b55257e4e218968731 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 "\e[1;34m$cask ->\e[0m"; 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
Deprecated because
brew deps --installed --tree
makes its work