I am learning to use cURL and I need to run this in a console:
curl -XGET localhost:9200/library/book/_search?pretty=true -d {
"query" : {
"query_string" : { "query" : "title:crime" }
}
}
But this is a multi-line command. How can I handle it to send a complete command?
Note that I understand I can put the content after -d in a file to run this command.
Sometime I have to use windows, try something like this :
^ to extend a command to next line and
\" to escape " on the json
Install Git for windows. Use git bash to run the curl commands.
I didn't find any way so far to send command spanning multiple using curl on windows. However, I was able to find a way to get the task done. Below is how I would rewrite the command you are trying to achieve
Just make sure the
/library/book/
is right index name.Hoping to hear back if you are able to make it