Fix a few typos

This commit is contained in:
HairyFotr
2017-07-20 20:53:15 +02:00
committed by Agniva De Sarker
parent 6bf26c0e0b
commit e0ccb7147a
10 changed files with 11 additions and 11 deletions

View File

@@ -2,7 +2,7 @@
> Execute SQL-like queries on .csv and .tsv files.
- Query .csv file by specifying the delimeter as ',':
- Query .csv file by specifying the delimiter as ',':
`q -d',' "SELECT * from {{path/to/file}}"`
@@ -22,6 +22,6 @@
`q "SELECT * FROM {{path/to/file}} f1 JOIN {{path/to/other_file}} f2 ON (f1.c1 = f2.c1)"`
- Format output using an output delimeter with an output header line (note: command will output column names based on the input file header or the column aliases overridden in the query):
- Format output using an output delimiter with an output header line (note: command will output column names based on the input file header or the column aliases overridden in the query):
`q -D{{delimiter}} -O "SELECT {{column}} as {{alias}} from {{path/to/file}}"`