mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-01 04:35:39 +02:00

* pages*: improve wording and list placeholders * clamav: fix verb tenses Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * buzzphrase: use k instead of n for number of phrases Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * adguardhome: use non-default instead of different * adguardhome: use configuration instead of config Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * goimports, module: fix list placeholders Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages*: leave stems and extensions in the same placeholders * pages*: fix list placeholders * pages*: fix list placeholders * pages*: apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * qpdf: enclose n with backticks Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
28 lines
630 B
Markdown
28 lines
630 B
Markdown
# xsv
|
|
|
|
> A CSV command-line toolkit written in Rust.
|
|
> More information: <https://github.com/BurntSushi/xsv>.
|
|
|
|
- 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 {{column1,column2}} {{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 {{column1}} {{path/to/file1.csv}} {{column2}} {{path/to/file2.csv}} | xsv table`
|