mithrandie / csvq

SQL-like query language for csv
https://mithrandie.github.io/csvq
MIT License
1.5k stars 65 forks source link

Replace double by single quotes in example (bash compatibility) #42

Closed kpym closed 3 years ago

kpym commented 3 years ago

In the README.md your example

csvq "select id, name from `user.csv`"

do not work in bash because the back ticks are executed (bash is looking to run user.csv and capture its output). My suggestion is to use single quotes:

csvq 'select id, name from `user.csv`'
mithrandie commented 3 years ago

You are right, single quotes are more appropriate. Thank you.