Today I'm learning to install rvm Ruby Version Manager and saw that the instruction given on the website look like this:
$ \curl -#L https://get.rvm.io | bash -s stable --autolibs=3 --ruby
I'm wondering what does \
doing in front of the curl
command. I tried to google it, but googling \
doesn't show anything useful. I tried \ls
and ls
, \pwd
and pwd
, both yields the same result.
So what does it actually do?
Thanks in advance!