1

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!

I'm a frog dragon
  • 7,865
  • 7
  • 46
  • 49

1 Answers1

4

It says on the page that you linked to right under all the \curl links:

Point to be noted is, there is a backslash before curl. This prevents misbehaving if you have aliased it with configuration in your shell start-up file.

Jens
  • 69,818
  • 15
  • 125
  • 179
Tyler D
  • 584
  • 1
  • 5
  • 16