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

21
pages.zh/common/let.md Normal file
View File

@@ -0,0 +1,21 @@
# let
> 在 shell 中评估算术表达式。
> 支持变量、运算符和条件表达式。
> 更多信息:<https://manned.org/let>。
- 评估一个简单的算术表达式:
`let "{{result = a + b}}"`
- 在表达式中使用后置递增和赋值:
`let "{{x++}}"`
- 在表达式中使用条件运算符:
`let "{{result = (x > 10) ? x : 0}}"`
- 显示帮助信息:
`let --help`