Update getting-started.asciidoc (#28145)

Replaced single quotation marks with double quotation marks surrounding localhost address
This commit is contained in:
Boudewijn 2018-01-10 18:00:12 +01:00 committed by Mayya Sharipova
parent c417427ecd
commit 3a96518b58

View File

@ -669,8 +669,8 @@ You can download the sample dataset (accounts.json) from https://github.com/elas
[source,sh]
--------------------------------------------------
curl -H "Content-Type: application/json" -XPOST 'localhost:9200/bank/account/_bulk?pretty&refresh' --data-binary "@accounts.json"
curl 'localhost:9200/_cat/indices?v'
curl -H "Content-Type: application/json" -XPOST "localhost:9200/bank/account/_bulk?pretty&refresh" --data-binary "@accounts.json"
curl "localhost:9200/_cat/indices?v"
--------------------------------------------------
// NOTCONSOLE