đź‘ŹWelcome to use and suggest!
🙋‍♂️This is a cli tools for converting csv to json.
bash
cargo install csv2json-easy
help information(with csv2json --help
):
```bash convert csv to json format 0.0.1 heguangfu csv to json tools
USAGE:
csv2json [FLAGS] [OPTIONS]
FLAGS: -h, --help Prints help information -p, --pretty output json pretty format -V, --version Prints version information -v, --verbose get some detail infomation od csv to json
OPTIONS:
-i, --input-file
ARGS:
⚠️Note:
input-file
or stdin_csv
is required when processing csv.limit
and offset
to proccess part of csv.
cat data/data.csv | csv2json-easy > data.json
or
csv2json-easy -i data/data.csv -o data.json
Note: CAREFUL with
-v
option when using linux tunnel redirect stdout to a file .
cat data/data.csv | csv2json-easy -l 10 -s 2> data.json
or
csv2json-easy -i data/data.csv -l 10 -s 2 -o data.json
use -v
will output some verbose information.