3

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
  • 104,438
  • 178
  • 489
  • 842

1 Answers1

5

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

tif
  • 1,424
  • 10
  • 14