Created
December 2, 2012 14:45
-
-
Save rkumar/4189127 to your computer and use it in GitHub Desktop.
see which brews are most depended upon
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
cd /usr/local/Library/Formula | |
# take out depends, removed everything other than dep, use awk to subtotal, sort on dep count | |
grep -h depends_on *.rb | sed 's/depends_on//g;s/=>//g' | tr -d "':\"" | awk '{ print $1}' | sort | subtotal.sh | sort -k 2 -n -t : |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
see https://gist.github.com/4189108 for subtotal.sh