Created
January 1, 2017 19:02
-
-
Save vibhavsinha/65171f5d968ce9c3d2ed5f037e55eabc to your computer and use it in GitHub Desktop.
Simple node version manager in 4 lines
This file contains 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/sh | |
ls ~/Downloads/node_versions | awk '{print NR"\t"$0}' | |
read index | |
val=`ls ~/Downloads/node_versions | head -n $index | tail -1` | |
ln -sf ~/Downloads/node_versions/$val/bin/node ~/bin/node |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://asciinema.org/a/3x6bhi0mqirnhtai9lnorcrp7