手机
当前位置:查字典教程网 >脚本专栏 >PowerShell >Powershell小技巧之复合筛选
Powershell小技巧之复合筛选
摘要:当你分析文本日志或筛选不通类型的信息时,你通常要使用Where-Object。这里有一个通用脚本来说明复合筛选:#logicalANDfil...

当你分析文本日志或筛选不通类型的信息时,你通常要使用 Where-Object。这里有一个通用脚本来说明复合筛选:

# logical AND filter for ALL keywords Get-Content -Path C:windowsWindowsUpdate.log | Where-Object { $_ -like '*successfully installed*' } | Where-Object { $_ -like '*framework*' } | Out-GridView # above example can also be written in one line # by using the -and operator # the resulting code is NOT faster, though, just harder to read Get-Content -Path C:windowsWindowsUpdate.log | Where-Object { ($_ -like '*successfully installed*') -and ($_ -like '*framework*') } | Out-GridView # logical -or (either condition is met) can only be applied in one line Get-Content -Path C:windowsWindowsUpdate.log | Where-Object { ($_ -like '*successfully installed*') -or ($_ -like '*framework*') } | Out-GridView

【Powershell小技巧之复合筛选】相关文章:

PowerShell脚本性能优化技巧总结

PowerShell函数中接收管道参数实例

PowerShell中对函数参数的命名建议

PowerShell函数参数使用智能提示功能例子

PowerShell函数指定返回值类型实例

PowerShell数组的一些操作技巧

Powershell创建数组正确、更快的方法

Powershell小技巧之使用WMI测试服务响应

PowerShell中定义多行字符串变量的方法

Powershell小技巧之删除不规则字符

精品推荐
分类导航