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,20 @@
# 保持头部
> 通过命令保持第一行不变,直接传递给 `stdout`。
> 更多信息:<https://github.com/eBay/tsv-utils#keep-header>。
- 对文件进行排序,保持第一行在顶部:
`keep-header {{path/to/file}} -- sort`
- 直接将第一行输出到 `stdout`,将文件的其余部分传递给指定的命令:
`keep-header {{path/to/file}} -- {{command}}`
-`stdin` 读取,排序除第一行外的所有行:
`cat {{path/to/file}} | keep-header -- {{command}}`
- 对文件进行 grep保持第一行不受搜索模式的影响
`keep-header {{path/to/file}} -- grep {{pattern}}`