Skip to content

Instantly share code, notes, and snippets.

@dacci
Last active September 25, 2021 16:07
Show Gist options
  • Save dacci/3790f7182ab4b345e66f90b97a6f3288 to your computer and use it in GitHub Desktop.
Save dacci/3790f7182ab4b345e66f90b97a6f3288 to your computer and use it in GitHub Desktop.
homebrew formula dependency graph
#!/bin/bash
echo digraph homebrew '{'
while read formula; do
while read dependent; do
echo " \"$dependent\" -> \"$formula\""
done < <(brew uses $formula --installed)
done < <(brew list --formulae)
echo '}'
@dacci
Copy link
Author

dacci commented Mar 19, 2021

Usage

./brew-deps.sh | dot -Tsvg -obrew-deps.svg

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