From d7b1024d3a9e092c030237410219a8ae376a4799 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 18 Aug 2021 16:02:55 -0700 Subject: [PATCH] Corrected stdin example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b88947..9345286 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ Or for data in a CSV file: `sqlite-utils memory` lets you import CSV or JSON data into an in-memory database and run SQL queries against it in a single command: - $ cat dogs.csv | sqlite-utils memory - "select name, age from dogs" + $ cat dogs.csv | sqlite-utils memory - "select name, age from stdin" See the [full CLI documentation](https://sqlite-utils.datasette.io/en/stable/cli.html) for comprehensive coverage of many more commands.