docs: shell命令统一用pwsh执行

This commit is contained in:
tian 2026-06-10 17:44:43 +08:00
parent 82caa3e155
commit e9fb47d9ad

View File

@ -151,6 +151,15 @@ var rotation = new Rotation3D(qx, qy, qz, qw);
## 9. 工具使用提示
### Shell 命令统一规范
所有 shell 命令、脚本、rg/fd 调用必须通过 `pwsh` (PowerShell 7) 执行,禁止用 cmd/bash
```
pwsh -Command "rg -n '关键字' src/"
pwsh -Command "./build-and-deploy.bat"
```
### edit 工具的正确格式
```json