Skip to content

Commit

Permalink
Fix duped lines in README
Browse files Browse the repository at this point in the history
  • Loading branch information
dbasden committed Jul 16, 2020
1 parent 411d3b0 commit 12bace8
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This isn't something you should use without realising the horrible, horrible imp

### Example with sqlite3 cli tool

```bash
```sh
$ sqlite3
SQLite version 3.27.2 2019-02-25 16:06:06
Enter ".help" for usage hints.
Expand All @@ -20,7 +20,6 @@ sqlite> CREATE TABLE fish(a,b,c);
sqlite> INSERT INTO fish VALUES (1,2,3);
sqlite> INSERT INTO fish VALUES (4,5,6);
sqlite> .exit

$ sqlite3
SQLite version 3.27.2 2019-02-25 16:06:06
Enter ".help" for usage hints.
Expand Down Expand Up @@ -52,17 +51,6 @@ $ redis-cli 'KEYS' '*'
17) "example.sqlite:filelen"
18) "example.sqlite:7"
19) "example.sqlite-journal:7"
$ sqlite3
SQLite version 3.27.2 2019-02-25 16:06:06
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite> .load ./redisvfs
sqlite> .open "example.sqlite"
sqlite> SELECT * FROM fish;
1|2|3
4|5|6
sqlite> .exit
$
```

Expand Down Expand Up @@ -92,7 +80,7 @@ $

### Building the extension and cli test tool

```
```sh
mkdir build
cd build
cmake ..
Expand Down

0 comments on commit 12bace8

Please sign in to comment.