Created
July 26, 2012 09:47
-
-
Save lavoiesl/3181263 to your computer and use it in GitHub Desktop.
List all installed brew formulas not used by other installed 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
#!/bin/bash | |
# List all installed brew formulas not used by other installed formulas. | |
# Useful for cleanup | |
for f in `brew list`; do | |
[[ -z "$(brew uses --installed $f)" ]] && echo $f | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment