我有以下PowerShell代码,该代码为我提供了计数输出。我想合并或删除前11个字符,仅保留“9”或上面的数字或更大的数字。有谁知道如何在PowerShell中从返回值中缩短字符串或减少X个字符?
PS C:\Documents and Settings\All Users\Application Data\McAfee\Common Framework\Task> Get-Content * -erroraction silentlycontinue | findstr /R "^\[Schedule]" | Measure-Object | find "Count "
Count : 9
PS C:\Documents and Settings\All Users\Application Data\McAfee\Common Framework\Task>
最佳答案
如果只需要Count
属性的值,则应该简单地得到:
(Get-Content * -EA SilentlyContinue | Select-String "^\[Schedule\]" |
Measure-Object).Count
关于powershell - Powershell中的Concat输出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17956452/