SQLite Forum

Documentation: broken text
Login
Example text is broken here: [Using sqlite3 in a shell script](https://www.sqlite.org/cli.html#using_sqlite3_in_a_shell_script)


<div style="background-color:#ccc;color:#000;border:2px solid green;padding:1em;border-radius:5px;"><strong>

```
$ sqlite3 ex1 'select * from tbl1' |
>  awk '{printf "<tr><td>%s<td>%s\n",$1,$2 }'
<tr><td>hello<td>10
<tr><td>goodbye<td>20
$
```

</strong></div>