Skip to content

Instantly share code, notes, and snippets.

@alessandrostone
Created July 3, 2016 05:42
Show Gist options
  • Save alessandrostone/d2b0e8d6d584f347479f8feec3dd0431 to your computer and use it in GitHub Desktop.
Save alessandrostone/d2b0e8d6d584f347479f8feec3dd0431 to your computer and use it in GitHub Desktop.
#!/bin/sh
echo " ██████ ██████ ███████ ██ ██ ██ ██ ███████ ██████ ███████""
echo " ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██""
echo " ██████ ██████ █████ ██ █ ██ █████ █████ ██ ███ ███████""
echo " ██ ██ ██ ██ ██ ██ ███ ██ ██ ██ ██ ██ ██ ██""
echo " ██████ ██ ██ ███████ ███ ███ ██ ██ ███████ ██████ ███████""
echo ""
echo ""
echo " ███ ███ ███████ ██████ █████ ███████ ██ ██ ██""
echo " ████ ████ ██ ██ ██ ██ ██ ██ ██ ██""
echo " ██ ████ ██ █████ ██ ███ ███████ █████ ██ ███""
echo " ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██""
echo " ██ ██ ███████ ██████ ██ ██ ██ ██ ██ ██""
# tnx to patrix♦ & mike__t for sharing this here:
# http://apple.stackexchange.com/questions/123900/is-there-a-quick-way-to-relink-my-homebrew-kegs/125319#125319?newreg=2b64b87bac6a47c1afd5b25d5a8cbda2
ls -1 /usr/local/Library/LinkedKegs | while read line; do
echo $line
brew unlink $line
brew link --force $line
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment