Skip to content

Instantly share code, notes, and snippets.

@rkumar
Created December 2, 2012 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rkumar/4189127 to your computer and use it in GitHub Desktop.
Save rkumar/4189127 to your computer and use it in GitHub Desktop.
see which brews are most depended upon
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 :
@rkumar
Copy link
Author

rkumar commented Dec 2, 2012

see https://gist.github.com/4189108 for subtotal.sh

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