Skip to content

Commit

Permalink
redirect output to file, to stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
cherkavi authored May 6, 2022
1 parent 671e4e3 commit e0db0d7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ termsql -i mycsvfile.CSV -d ',' -c 'field_name,field_index' -t 'index_de' -o myn
sqlite3 mynewdatabase.db
.tables
```
## redirect output to file redirect output to stdout
```
.output result-output.txt
select * from index_de;
.output
```

## create table and import
```sql
Expand Down

0 comments on commit e0db0d7

Please sign in to comment.