您现在的位置是:网站首页> 编程资料编程资料
Powershell小技巧之复合筛选_PowerShell_
2023-05-26
298人已围观
简介 Powershell小技巧之复合筛选_PowerShell_
当你分析文本日志或筛选不通类型的信息时,你通常要使用 Where-Object。这里有一个通用脚本来说明复合筛选:
# logical AND filter for ALL keywords Get-Content -Path C:\windows\WindowsUpdate.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:\windows\WindowsUpdate.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:\windows\WindowsUpdate.log | Where-Object { ($_ -like '*successfully installed*') -or ($_ -like '*framework*') } | Out-GridView 您可能感兴趣的文章:
相关内容
- Powershell小技巧之使用Copy-Item添加程序到开机启动_PowerShell_
- Powershell小技巧之使用-F方法带入数据_PowerShell_
- Powershell小技巧之播放WAV声音_PowerShell_
- Powershell小技巧之使用Jint引擎在PowerShell中执行Javascript函数_PowerShell_
- Powershell小技巧之使用WMI查询插上的U盘_PowerShell_
- Powershell小技巧之使用WMI测试服务响应_PowerShell_
- Powershell小技巧之系统运行时间_PowerShell_
- Windows Powershell 执行文件和脚本_PowerShell_
- Windows Powershell 通过函数扩展别名_PowerShell_
- Windows Powershell 别名_PowerShell_
