Last active
May 5, 2017 01:28
-
-
Save marksilvis/db0d4d88586499c3a1aa5ee940c888ee to your computer and use it in GitHub Desktop.
Find unused brew formulas
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
brew list | | |
while read cask; do echo -n $cask; brew uses --installed $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