Execute SQL-like queries on .csv and .tsv files.
q -d',' "SELECT * from {{path/to/file}}"
q -t "SELECT * from {{path/to/file}}"
q -d{{delimiter}} -H "SELECT * from {{path/to/file}}"
{{output}} | q "select * from -"
f1
and f2
in the example) on column c1
, a common column:q "SELECT * FROM {{path/to/file}} f1 JOIN {{path/to/other_file}} f2 ON (f1.c1 = f2.c1)"
q -D{{delimiter}} -O "SELECT {{column}} as {{alias}} from {{path/to/file}}"