I've tried the following to send a line break with curl, but \n is not interpreted by curl.
curl -X PUT -d "my message\n" http://localhost:8000/hello
How can I send a line break with curl?
|
|
I found a different solution and just want to note it here for eneryone's future reference: Sometimes you want to provide the data to be sent verbatim. The --data-binary option does that. |
|||||||||
|
|
Using JavaScript string syntax, your shell is passing
I found this out by searching the bash manpage. If you were using zsh, you wouldn't have had this issue, as |
|||||||||||
|
|
Not an answer to your question, but I would work around it by creating a temporary file containing the message and line break, and give curl that file to work on:
From the manual:
|
|||
|