среда, 29 января 2014 г.

PowerShell: "grep -v"

Get-Content Some_File.txt | Select-String -NotMatch Filter1,Filter2,Filter3
Select-String -NotMatch Filter1,Filter2,Filter3 Some_File.txt | Format-Table -Property Line -HideTableHeaders

Other