Does qsv support other file formats other than CSV? #293
jqnatividad
started this conversation in
FAQ
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Yes. qsv supports TSV and TAB files as well.
It also exports Excel and Open Document Spreadsheet to CSV with the
excel
command.The jsonl command converts a CSV/TSV/TAB file to the jsonl/ndjson format.
If your file uses an unconventional delimiter, you can specify it with the
--delimiter
option or theQSV_SNIFF_DELIMITER
andQSV_DEFAULT_DELIIMITER
environment variables.If you want to convert your CSV to JSON and vice-versa, you can use other composable, open source command line tools like jq and dasel.
See File Formats for more details.
There are other tools that deal with CSVs like mlr and csvkit, that complement and overlap with qsv that we also highly recommend.
Beta Was this translation helpful? Give feedback.
All reactions