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

View File

@@ -0,0 +1,16 @@
# csv2tsv
> 将CSV以逗号分隔文本转换为TSV以制表符分隔格式。
> 更多信息:<https://github.com/eBay/tsv-utils/blob/master/README.md#csv2tsv>。
- 从CSV转换为TSV
`csv2tsv {{path/to/input_csv1 path/to/input_csv2 ...}} > {{path/to/output_tsv}}`
- 将以字段分隔符分隔的CSV转换为TSV
`csv2tsv -c'{{field_delimiter}}' {{path/to/input_csv}}`
- 将以分号分隔的CSV转换为TSV
`csv2tsv -c';' {{path/to/input_csv}}`