在powershell中使用select-string排除搜索模式

时间:2016-08-24 14:58:46

标签: powershell

我使用select string搜索文件中的错误。是否可以像使用grep一样排除搜索模式。例如:

grep ERR* | grep -v "ERR-10"

select-string -path logerror.txt -pattern "ERR"

logerror.txt

OK
ERR-10
OK
OK
ERR-20
OK
OK
ERR-10
ERR-00

我想获得所有ERR行,但不是ERR-00和ERR-10

2 个答案:

答案 0 :(得分:5)

我为此

使用“-NotMatch”参数
PS C:\>Get-Content .\some.txt
1
2
3
4
5
PS C:\>Get-Content .\some.txt | Select-String -Pattern "3" -NotMatch    
1
2
4
5

对于您的情况,答案是:

Get-Content .\logerror.txt | Select-String -Pattern "ERR*" | Select-String -Pattern "ERR-[01]0" -NotMatch

答案 1 :(得分:2)

我猜你可以在这里使用Where-Object

Write-Output @"
OK
ERR-10
OK
OK
ERR-20
OK
OK
ERR-10
ERR-00
"@ > "C:\temp\log.txt"

# Option 1.
Get-Content "C:\temp\log.txt" | Where-Object { $_ -Match "ERR*"} | Where-Object { $_ -NotMatch "ERR-[01]0"}

# Option 2.
Get-Content "C:\temp\log.txt" | Where-Object { $_ -Match "ERR*" -and $_ -NotMatch "ERR-[01]0"}