Skip to content

Instantly share code, notes, and snippets.

@ezy
Created June 5, 2018 01:37
Show Gist options
  • Save ezy/dc61a3c27da19a101024bcd85588a48a to your computer and use it in GitHub Desktop.
Save ezy/dc61a3c27da19a101024bcd85588a48a to your computer and use it in GitHub Desktop.
Handy bash script for linking node versions in brew
### 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