brew: unlink and re-link all formulas and kegs
ls -1 /usr/local/Library/LinkedKegs | while read line; do echo $line; brew unlink $line; brew link --force $line; done | |
brew list -1 | while read line; do brew unlink $line; brew link $line; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment