We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dsq output as json format by default. Can we support the output in csv format.
Currently, I need to use the jq and sed to get the output of csv
jq
sed
dsq t1.csv t2.csv "select t1.*,t2.* from {0} t1 join {1} t2 on t1.id = t2.id" | jq -r '(map(keys) | add | unique) as $cols | map(. as $row | $cols | map($row[.])) as $rows | $cols, $rows[] | @csv' | sed -e 's/"//g' > result.csv
Can we support the output in csv format by --format
--format
dsq --format csv t1.csv t2.csv "select t1.*,t2.* from {0} t1 join {1} t2 on t1.id = t2.id"
The text was updated successfully, but these errors were encountered:
dsq *** | dasel -r json -w csv
https://github.com/TomWright/dasel
Sorry, something went wrong.
No branches or pull requests
dsq output as json format by default. Can we support the output in csv format.
Currently, I need to use the
jq
andsed
to get the output of csvCan we support the output in csv format by
--format
The text was updated successfully, but these errors were encountered: