2018-10-22 21:51:33 +01:00
|
|
|
# xsv
|
|
|
|
|
2019-10-07 21:06:56 +01:00
|
|
|
> A CSV command line toolkit written in Rust.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://github.com/BurntSushi/xsv>.
|
2018-10-22 21:51:33 +01:00
|
|
|
|
|
|
|
- Inspect the headers of a file:
|
|
|
|
|
|
|
|
`xsv headers {{path/to/file.csv}}`
|
|
|
|
|
|
|
|
- Count the number of entries:
|
|
|
|
|
|
|
|
`xsv count {{path/to/file.csv}}`
|
|
|
|
|
|
|
|
- Get an overview of the shape of entries:
|
|
|
|
|
|
|
|
`xsv stats {{path/to/file.csv}} | xsv table`
|
|
|
|
|
|
|
|
- Select a few columns:
|
|
|
|
|
|
|
|
`xsv select {{column_a,column_b}} {{path/to/file.csv}}`
|
|
|
|
|
|
|
|
- Show 10 random entries:
|
|
|
|
|
|
|
|
`xsv sample {{10}} {{path/to/file.csv}}`
|
|
|
|
|
|
|
|
- Join a column from one file to another:
|
|
|
|
|
|
|
|
`xsv join --no-case {{column_a}} {{path/to/file/a.csv}} {{column_b}} {{path/to/file/b.csv}} | xsv table`
|