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

20
pages.zh/common/cmp.md Normal file
View File

@@ -0,0 +1,20 @@
# cmp
> 逐字节比较两个文件。
> 更多信息:<https://www.gnu.org/software/diffutils/manual/html_node/Invoking-cmp.html>。
- 输出两个文件之间第一个差异的字符和行号:
`cmp {{path/to/file1}} {{path/to/file2}}`
- 输出第一个差异的信息:字符、行号、字节和数值:
`cmp --print-bytes {{path/to/file1}} {{path/to/file2}}`
- 输出每个差异的字节号码和数值:
`cmp --verbose {{path/to/file1}} {{path/to/file2}}`
- 比较文件但不输出任何内容,仅返回退出状态:
`cmp --quiet {{path/to/file1}} {{path/to/file2}}`