Chinese pages: correct Chinese punctuation (#5240)

This commit is contained in:
bl-ue
2021-08-02 04:41:09 -04:00
committed by GitHub
parent eaef3b4d21
commit 289e30dfb3
373 changed files with 1817 additions and 1810 deletions

View File

@@ -1,24 +1,24 @@
# cat
> 打印和拼接文件的工具.
> 打印和拼接文件的工具
> 更多信息: <https://www.gnu.org/software/coreutils/cat>.
- 以标准输出,打印文件内容:
- 以标准输出,打印文件内容
`cat {{file}}`
- 多文件合并到目标文件:
- 多文件合并到目标文件
`cat {{file1}} {{file2}} > {{target_file}}`
- 多文件合并,并追加到目标文件:
- 多文件合并,并追加到目标文件
`cat {{file1}} {{file2}} >> {{target_file}}`
- 显示行号:
- 显示行号
`cat -n {{file}}`
- 显示不可打印和空白的字符 (使用`M-` 前缀标记非ASCII字符):
- 显示不可打印和空白的字符使用 `M-` 前缀标记非 ASCII 字符
`cat -v -t -e {{file}}`