Official NVM documentation states to install it in such way:
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
If you look at curl help, there's -o
described as:
-o, --output FILE Write to FILE instead of stdout
Confusing a bit, how does the NVM command works? And why the extra -
is added?
Thanks!