mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-05-03 06:59:23 -05:00
16 lines
312 B
PowerShell
16 lines
312 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
Set-StrictMode -Version 3.0
|
|
|
|
$result = 0
|
|
|
|
Get-Content .\pp.txt
|
|
| Select-String -Pattern '^ <Duration msecs="(.*)"/>'
|
|
| ForEach-Object {
|
|
$_ -cmatch '<Duration msecs="(.*)"/>' | Out-Null
|
|
[float] $Matches[1]
|
|
}
|
|
| ForEach-Object { $result += $_ }
|
|
|
|
$result / 1000
|