aapt to buku: add Chinese translation (#4846)

This commit is contained in:
zhouquan
2020-11-04 14:12:56 -06:00
committed by GitHub
parent 7820f75085
commit 8f73cca2e7
28 changed files with 597 additions and 3 deletions

23
pages.zh/common/cat.md Normal file
View File

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