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

24
pages.zh/common/sdiff.md Normal file
View File

@@ -0,0 +1,24 @@
# sdiff
> 比较两个文件之间的差异,并可选择合并这两个文件。
> 更多信息:<https://manned.org/sdiff>。
- 比较两个文件:
`sdiff {{path/to/file1}} {{path/to/file2}}`
- 比较两个文件,忽略所有的制表符和空格:
`sdiff -W {{path/to/file1}} {{path/to/file2}}`
- 比较两个文件,忽略行末的空格:
`sdiff -Z {{path/to/file1}} {{path/to/file2}}`
- 以不区分大小写的方式比较两个文件:
`sdiff -i {{path/to/file1}} {{path/to/file2}}`
- 比较并合并,输出写入新文件:
`sdiff -o {{path/to/merged_file}} {{path/to/file1}} {{path/to/file2}}`