服务器之家

服务器之家 > 正文

Powershell小技巧之复合筛选

时间:2020-06-18 10:15     来源/作者:脚本之家

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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

相关文章

热门资讯

歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意 2019-07-07
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
返回顶部