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

View File

@@ -0,0 +1,13 @@
# Measure-Command
> 测量运行脚本块和 cmdlet 所需的时间。
> 注意:此命令只能通过 PowerShell 使用。
> 更多信息:<https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/measure-command>。
- 测量运行命令所需的时间:
`Measure-Command { {{command}} }`
- 将输入传递给 Measure-Command传递给 `Measure-Command` 的对象在传递给 Expression 参数的脚本块中可用):
`10, 20, 50 | Measure-Command -Expression { for ($i=0; $i -lt $_; $i++) {$i} }`