SQLite Forum

Sending output to a pipe
Login
Use the solution used by single-tasking Operating Systems that cannot run multiple processes simultaneously -- ie, where a "pipe" is implemented by running the first program and redirecting the "pipe" output to a file, then after than is finished, run the second program with its input attached to the file.

```
.once tempfile.txt
[... your command goes here ...]
.system less tempfile.txt
```