标签: powershell
我需要逐行解析一个文本文件和某个搜索字符串,如果在任何行中找不到该字符串,那么代码应该将整行输出到单独的文本文件中。
答案 0 :(得分:-1)
您可以使用select-string:
Select-String -Path "yourfile.txt" -Pattern "yourstring" -NotMatch | Select-Object -ExpandProperty Line | Out-File "output.txt"