Created
June 5, 2018 01:37
-
-
Save ezy/dc61a3c27da19a101024bcd85588a48a to your computer and use it in GitHub Desktop.
Handy bash script for linking node versions in brew
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 link node | |
alias node6='brew unlink node@8 && brew link node@6 --force --overwrite'; | |
alias node8='brew unlink node@6 && brew link node@8 --force --overwrite'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment