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
# same as https://github.com/nvm-sh/nvm?tab=readme-ov-file#fish | |
# but without bass installed | |
# install nvm as usual, e. g. with "curl ... | bash" | |
# try it | |
nvm install 18 | |
node -v # prints Node version 18 | |
mkdir ~/test20; cat 20 >~/test20/.nvmrc | |
mkdir ~/test22; cat 22 >~/test22/.nvmrc | |
load_nvm | |
cd ~/test20 |