Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
On what platform? May be relevant – Pekka 웃 Oct 6 '10 at 12:36
The platform is Linux. – deamon Oct 6 '10 at 17:26

3 Answers

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.

share|improve this answer
1  
This is the best way to do it. The alternative of using -d @message.txt as suggested in the other answer in particular can alter your line breaks. --data-binary on the other hand will not (which is important if you need to keep your CRLF linebreaks for multipart/form-data, see: stackoverflow.com/questions/10765243/…) – William Denniss May 26 '12 at 10:18
Because it took me a sec: if you're uploading a file you'll probably want to use a subshell for this curl -H "Content-Type:text/plain" --data-binary "$(<myfile)" http://localhost:8888 – nailer Sep 28 '12 at 13:47
Interesting, but what is the advantage? – Szocske Nov 21 '12 at 14:40

Using JavaScript string syntax, your shell is passing "my message\\n" to curl rather than "my message\n". If you're using bash, use $'my message\n' instead. I don't know what to do if you're using tcsh.

curl -X PUT -d $'my message\n' http://localhost:8000/hello

I found this out by searching the bash manpage.

If you were using zsh, you wouldn't have had this issue, as echo "1\n2\n3" prints newlines.

share|improve this answer
This worked for me too. I'll have to play around with it, because it didn't work with double-quotes, which means that I can't use single-quotes within the string. – Tyler Collier Jul 14 '11 at 22:13
I don't know where you got this idea that this is "JavaScript shell syntax". The shell passes my message\n verbatim, not with two escapes as you say. – Chris Down Mar 18 at 12:27
@ChrisDown, you misquoted me. I said "JavaScript string syntax", not "JavaScript shell syntax". I'm using JavaScript string syntax to be clear about what I mean with my string examples. I think what you're referring to as my message\n is the same as what I'm referring to as "my message\n". – Ben Atkin Mar 18 at 20:11
@BenAtkin Sorry, freudian slip. However, my reading was still correct. \n has nothing to do with JavaScript. In fact nothing here has anything at all to do with JavaScript. – Chris Down Mar 19 at 2:52
I'm using it for the sake of explaining it to people. And it seems to have worked. Shell string syntax isn't widely understood. If it was, why would this question have been asked? What should I have used to explain it? – Ben Atkin Mar 19 at 22:16
show 2 more comments

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:

curl -X PUT -d @message.txt http://localhost:8000/hello

From the manual:

If you start the data with the letter @, the rest should be a file name to read the data from, or - if you want curl to read the data from stdin. The contents of the file must already be URL-encoded. Multiple files can also be specified. Posting data from a file named 'foobar' would thus be done with --data @foobar.

share|improve this answer
Using temporary files is a handy approach. As per Szocske's answer, --data-binary is a more faithful alternative to -d, as it will send the data verbatim. – William Denniss May 26 '12 at 10:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.