I found these command from http://rvm.io/rvm/install
Why do we need \ in the following command?
$\curl -sSL https://get.rvm.io | bash
I found these command from http://rvm.io/rvm/install
Why do we need \ in the following command?
$\curl -sSL https://get.rvm.io | bash
Short version: This skips replacing "curl" with an alias you might have defined.
A more verbose answer you can find here: \curl ... | bash ... what's the slash for?