common/a~g*:fix outdated Chinese pages (#14690)

* common/a~g*:fix outdated Chinese pages

* Update airmon-ng.md

* Update aria2c.md

* update chown

* Update ansible-playbook.md

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
Jin
2024-11-27 06:20:32 -05:00
committed by GitHub
parent 864b1b260f
commit 67166ff0e7
24 changed files with 261 additions and 140 deletions

View File

@@ -1,7 +1,7 @@
# bc
> 一个任意精度计算器语言。
> 请参阅:`dc`.
> 任意精度计算器语言。
> 请参阅:`dc``qalc`。
> 更多信息:<https://manned.org/bc>.
- 启动交互式会话:
@@ -10,7 +10,7 @@
- 启动交互式会话并启用标准数学库:
`bc --mathlib`
`bc --interactive --mathlib`
- 计算表达式:
@@ -20,10 +20,14 @@
`bc {{路径/到/脚本.bc}}`
- 计算具有指定比例的表达式:
- 使用指定的小数位数计算一个表达式:
`echo 'scale = {{10}}; {{5 / 3}}' | bc`
- 使用 `mathlib` 计算正弦/余弦/反正切/自然对数/指数函数:
`echo '{{s|c|a|l|e}}({{1}})' | bc --mathlib`
- 执行一个内联的阶乘脚本:
`echo "define factorial(n) { if (n <= 1) return 1; return n*factorial(n-1); }; factorial({{10}})" | bc`