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

@@ -1,24 +1,24 @@
# cat
> 打印和连接文件。
> 更多信息:<https://manned.org/cat.1posix>.
> 更多信息:<https://manned.org/cat.1posix>
- 将文件内容打印到 `标准输出`
- 将文件内容打印到 `stdout`
`cat {{路径/到/文件}}`
`cat {{path/to/file}}`
- 将多个文件连接成一个输出文件:
`cat {{路径/到/文件1 路径/到/文件2 ...}} > {{路径/到/输出文件}}`
`cat {{path/to/file1 path/to/file2 ...}} > {{path/to/output_file}}`
- 将多个文件加到一个输出文件
- 将多个文件加到输出文件:
`cat {{路径/到/文件1 路径/到/文件2 ...}} >> {{路径/到/输出文件}}`
`cat {{path/to/file1 path/to/file2 ...}} >> {{path/to/output_file}}`
- 无缓冲地将文件内容复制到输出文件
- 将文件内容复制到输出文件而不进行缓冲
`cat -u {{/dev/tty12}} > {{/dev/tty13}}`
-`标准输入` 写入文件:
-`stdin` 写入文件:
`cat - > {{路径/到/文件}}`
`cat - > {{path/to/file}}`