Skip to content

Instantly share code, notes, and snippets.

@JamesMcMahon
Created September 10, 2017 22:19
Show Gist options
  • Save JamesMcMahon/fc67a1467f8588cacc9489e6767a65d9 to your computer and use it in GitHub Desktop.
Save JamesMcMahon/fc67a1467f8588cacc9489e6767a65d9 to your computer and use it in GitHub Desktop.
Lists brew dependencies
#!/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