add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

28
pages.zh/common/xsv.md Normal file
View File

@@ -0,0 +1,28 @@
# xsv
> 一个用Rust编写的CSV命令行工具包。
> 更多信息:<https://github.com/BurntSushi/xsv>。
- 检查文件的标题:
`xsv headers {{path/to/file.csv}}`
- 计算条目数量:
`xsv count {{path/to/file.csv}}`
- 获取条目形状的概述:
`xsv stats {{path/to/file.csv}} | xsv table`
- 选择几个列:
`xsv select {{column1,column2}} {{path/to/file.csv}}`
- 显示10个随机条目
`xsv sample {{10}} {{path/to/file.csv}}`
- 将一个文件中的列连接到另一个文件:
`xsv join --no-case {{column1}} {{path/to/file1.csv}} {{column2}} {{path/to/file2.csv}} | xsv table`