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

12
pages.zh/osx/indent.md Normal file
View File

@@ -0,0 +1,12 @@
# indent
> 通过插入或删除空白来更改 C/C++ 程序的外观。
> 更多信息:<https://keith.github.io/xcode-man-pages/indent.1.html>。
- 根据伯克利风格格式化 C/C++ 源代码:
`indent {{path/to/source_file.c}} {{path/to/indented_file.c}} -nbad -nbap -bc -br -c33 -cd33 -cdb -ce -ci4 -cli0 -di16 -fc1 -fcb -i4 -ip -l75 -lp -npcs -nprs -psl -sc -nsob -ts8`
- 根据柯宁汉与里奇K&R风格格式化 C/C++ 源代码:
`indent {{path/to/source_file.c}} {{path/to/indented_file.c}} -nbad -bap -nbc -br -c33 -cd33 -ncdb -ce -ci4 -cli0 -cs -d0 -di1 -nfc1 -nfcb -i4 -nip -l75 -lp -npcs -nprs -npsl -nsc -nsob`