From 566c4a53c57e4daa67b1ddbac1d8df837f3e495b Mon Sep 17 00:00:00 2001 From: Yann Simon Date: Thu, 29 Apr 2021 09:25:35 +0200 Subject: [PATCH] do not use echo that espaces newline Fix https://github.com/meilisearch/milli/issues/175 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 50a64e079..13d35380a 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ All of that on a 39$/month machine with 4cores. You can feed the engine with your CSV (comma-seperated, yes) data like this: ```bash -echo "name,age\nhello,32\nkiki,24\n" | http POST 127.0.0.1:9700/documents content-type:text/csv +printf "name,age\nhello,32\nkiki,24\n" | http POST 127.0.0.1:9700/documents content-type:text/csv ``` Here ids will be automatically generated as UUID v4 if they doesn't exist in some or every documents.