2

I am trying to do the following command:

 curl -k -i -X POST -d ' { "path" : "/" }' 
    https://david:mypa$$@example.com:9092/files/browse

How would I properly send the above command, given that my password is mypa$$ ?

David542
  • 101,766
  • 154
  • 423
  • 727

1 Answers1

4

Either enclosing them in single quotes or by prepending them with backslashes, like \$\$.

tif
  • 1,304
  • 8
  • 14